/*
 * css/style.css
 */
/* Globals 
------------------------------*/
body {
	background-color: rgb(177, 237, 245);
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
	letter-spacing: 0.077em;
	line-height: 1.5em;
}

body > .container-fluid {
	background-color: #FFFFFF;
	max-width: 1140px;
}

h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

p {
	line-height: 1.5em;
}

a,
.btn-link {
	color: rgb(177, 237, 245);
}

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

/* General Component Styles */
section[class^="component"] {
	padding: 20px 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 {
	position: relative;
	flex-grow: 1;
	padding: 0;
}

/* 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%;
	min-width: 130px;
	-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(177, 237, 245);
}

.panel {
	margin-bottom: 20px;
	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);
}

.panel-body {
	padding: 15px;
}

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

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

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

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

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

/* Buttons */
.btn {
	border-radius: 25px;
	border: none;
	padding: 1.2em 5em;
	letter-spacing: 2px;
	font-size: 12px;
}

.btn-small {
	padding: 0.6em 1.8em;
	border: 1px solid rgb(177, 237, 245);
	border-radius: 15px;
	color: rgb(177, 237, 245);
}

.btn-small:hover,
.btn-small:focus,
.btn-small:active,
.btn-small:active:focus {
	background-color: #333333;
	border: 1px solid #333333;
	color: rgb(177, 237, 245) !important;
}

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

.btn-primary {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
	letter-spacing: 0.167em;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: rgb(181, 181, 181);
	color: #FFFFFF;
}

.btn-secondary {
	background-color: #333333;
	color: #FAFAFA;
	font-family: Quicksand;
	font-size: 16px;
	letter-spacing: 0.167em;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:active:focus {
	background-color: rgb(139, 139, 139);
	color: #FAFAFA;
}

.btn-empty {
	background-color: transparent;
	color: rgb(177, 237, 245);
	border: 1px solid rgb(177, 237, 245);
}

.btn-empty:hover,
.btn-empty:focus,
.btn-empty:active,
.btn-empty:active:focus {
	background-color: #333333;
}

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

/* Subscribe Flow
------------------------------*/
.sf-header {
	padding: 50px 0 15px;
}

.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;

	margin-top: 20px;
	margin-bottom: 20px;
}

.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-top: .9375rem;
	padding-bottom: .9375rem;
}

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

	text-align: center;
	border: 1px solid #E1E1E1;
	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%;
}

/* Checkout
------------------------------*/
.checkout_content {
	margin-top: 0;
	overflow: auto;
	padding: 50px 0 60px;
}

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

.checkout_content #checkout_button {
	background-color: rgb(177, 237, 245);
	border: none;
	border-radius: 25px;
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
	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(181, 181, 181);
	color: #FFFFFF;
}

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

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

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

/* Account
------------------------------*/
.account-header {
	margin: 50px 0 25px 0;
	padding: 0 15px;
}

.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 50px 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(177, 237, 245);
}

.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(177, 237, 245);
	color: rgb(177, 237, 245);
	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(181, 181, 181);
	border-color: rgb(181, 181, 181);
	text-decoration: none;
}

/* Media Queries
------------------------------*/
@media (max-width: 767px) {
	/* 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/about/cmp_0e14deae-d36e-4905-9d67-d084a135f9ac/component.css
 */
#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac {
	background-color: #FFFFFF;
}

#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0e14deae-d36e-4905-9d67-d084a135f9ac ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/about/cmp_ac48949c-70ba-42af-a4a6-3f5236256a63/component.css
 */
#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 {
	background-color: #FFFFFF;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63  {
	padding-bottom: 60px;
}
#cmp_ac48949c-70ba-42af-a4a6-3f5236256a63 h3 {
	margin-bottom: 40px;
}
/*
 * components/about/cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b/component.css
 */
#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b {
	background-color: #FFFFFF;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b  {
	padding-top: 60px;
}
#cmp_b500fe0d-4c0d-49b6-a833-4cc93012823b h1 {
	margin-bottom: 15px;
}
/*
 * components/about/cmp_e87eb60c-a13d-4256-8472-85e4f69322c0/component.css
 */
#cmp_e87eb60c-a13d-4256-8472-85e4f69322c0 img {
	max-width: 100%;
}

/*
 * components/bakingdeals/cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a/component.css
 */
#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a {
	background-color: #FFFFFF;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0b1cd443-d45b-4791-9a62-6b73f7cf557a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/bakingdeals/cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd/component.css
 */
#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd {
	background-color: #FFFFFF;
}

#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f1915b83-c1d0-4eda-aecd-bc5260ad13cd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/bread/cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261/component.css
 */
#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 {
	padding: 0;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content h1 {
	color: rgb(87, 87, 87);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content h2 {
	color: rgb(87, 87, 87);
	font-family: Alice;
	font-size: 22px;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content h3 {
	color: rgb(253, 81, 81);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content p {
	color: rgb(87, 87, 87);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_1b5015c0-ed3d-4866-a3eb-c00676cf8261 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/bread/cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4/component.css
 */
#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 {
	background-color: #FFFFFF;
}

#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_31f7a26e-77aa-43cf-aaba-958f2da9eca4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/bread/cmp_39133246-f51a-4a8d-b14a-b9e251a0b808/component.css
 */
#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 {
	padding: 0;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content h1 {
	color: rgb(87, 87, 87);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 24px;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_39133246-f51a-4a8d-b14a-b9e251a0b808 .hero-content .btn:hover {
	background-color: rgb(95, 95, 95);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/bread/cmp_61a498c1-d151-4dd3-bd75-6805ff071682/component.css
 */
#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 {
	padding: 0;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content h1 {
	color: rgb(51, 51, 51);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_61a498c1-d151-4dd3-bd75-6805ff071682 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_633fae3d-acbe-4029-a1d9-218653d09321/component.css
 */
#cmp_633fae3d-acbe-4029-a1d9-218653d09321 {
	padding: 0;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content h1 {
	color: rgb(51, 51, 51);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 24px;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content h3 {
	color: rgb(255, 88, 88);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

	#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_633fae3d-acbe-4029-a1d9-218653d09321 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8/component.css
 */
#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 {
	background-color: rgb(51, 51, 51);
}

#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 46px;
}

#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 h2 {
	color: rgb(177, 237, 245);
	font-family: Alice;
	font-size: 36px;
}

#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 24px;
}

#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 24px;
}

#cmp_6b0c5bec-9294-4f3d-a20d-ee60170505a8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 24px;
}

/*
 * components/bread/cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749/component.css
 */
#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 {
	background-color: #FFFFFF;
}

#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 36px;
}

#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_71202d0e-8b5e-4b86-a402-323ab7ec3749 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/bread/cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4/component.css
 */
#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 {
	padding: 0;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content h1 {
	color: rgb(87, 87, 87);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content h2 {
	color: rgb(95, 95, 95);
	font-family: Alice;
	font-size: 22px;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content h3 {
	color: rgb(95, 95, 95);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_7ca7f7d9-9aa3-440f-a4c3-c3446440ccf4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d/component.css
 */
#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d {
	background-color: #FFFFFF;
}

#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 16px;
}

#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_883640f7-6e71-4c71-8ce1-3e301bbe631d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/bread/cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce/component.css
 */
#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce {
	padding: 0;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content h1 {
	color: rgb(87, 87, 87);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content h2 {
	color: rgb(95, 95, 95);
	font-family: Alice;
	font-size: 22px;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content h3 {
	color: rgb(238, 91, 91);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_abc3546e-3d56-49ad-9b6c-1b52e19e92ce .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8/component.css
 */
#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 {
	padding: 0;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content h1 {
	color: rgb(87, 87, 87);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content h2 {
	color: rgb(87, 87, 87);
	font-family: Alice;
	font-size: 22px;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content h3 {
	color: rgb(87, 87, 87);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content p {
	color: rgb(87, 87, 87);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_b5f8b82b-7672-48ec-b3aa-1ac588bfb1c8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_b7402ec6-274f-49e7-91da-8f799427d8ab/component.css
 */
#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab {
	background-color: rgb(51, 51, 51);
}

#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab h1 {
	color: rgb(255, 255, 255);
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b7402ec6-274f-49e7-91da-8f799427d8ab ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/bread/cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513/component.css
 */
#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 {
	padding: 0;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content h2 {
	color: #FFFFFF;
	font-family: Bangers;
	font-size: 60px;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content h3 {
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content p {
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_c13dc446-5fd6-45e4-abc6-0461e4cce513 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_e20e3858-9a1a-4799-96e1-ca0b9034ffb8/component.css
 */
#cmp_e20e3858-9a1a-4799-96e1-ca0b9034ffb8 img {
	max-width: 100%;
}

/*
 * components/bread/cmp_f53593cd-a985-49de-8fbf-928194b069b0/component.css
 */
#cmp_f53593cd-a985-49de-8fbf-928194b069b0 {
	padding: 0;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content h1 {
	color: rgb(51, 51, 51);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content h2 {
	color: #3333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f53593cd-a985-49de-8fbf-928194b069b0 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4/component.css
 */
#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 {
	padding: 0;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content h1 {
	color: rgb(51, 51, 51);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content h3 {
	color: rgb(255, 154, 77);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fac5825c-d2e6-41e7-b731-09cd695e7df4 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/bread/cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9/component.css
 */
#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 {
	padding: 0;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content h1 {
	color: rgb(87, 87, 87);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content h2 {
	color: rgb(95, 95, 95);
	font-family: Alice;
	font-size: 22px;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content h3 {
	color: rgb(95, 95, 95);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_fe7b1c01-4987-4f53-bbe0-c4283abe59a9 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/breadtutorials/cmp_0e58f9d9-b76b-490e-bb15-27a25d4d68ea/component.css
 */
#cmp_0e58f9d9-b76b-490e-bb15-27a25d4d68ea {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_0e58f9d9-b76b-490e-bb15-27a25d4d68ea .content {
	padding: 0;
}

#cmp_0e58f9d9-b76b-490e-bb15-27a25d4d68ea .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_0e58f9d9-b76b-490e-bb15-27a25d4d68ea .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_1f8df216-6cb8-405b-b8de-6469afd7444d/component.css
 */
#cmp_1f8df216-6cb8-405b-b8de-6469afd7444d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_1f8df216-6cb8-405b-b8de-6469afd7444d .content {
	padding: 0;
}

#cmp_1f8df216-6cb8-405b-b8de-6469afd7444d .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_1f8df216-6cb8-405b-b8de-6469afd7444d .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_654b79f9-bb9f-4578-84fc-47eacba494de/component.css
 */
#cmp_654b79f9-bb9f-4578-84fc-47eacba494de {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_654b79f9-bb9f-4578-84fc-47eacba494de .content {
	padding: 0;
}

#cmp_654b79f9-bb9f-4578-84fc-47eacba494de .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_654b79f9-bb9f-4578-84fc-47eacba494de .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_676a4758-f719-49d8-9a61-ac6a7262ea80/component.css
 */
#cmp_676a4758-f719-49d8-9a61-ac6a7262ea80 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_676a4758-f719-49d8-9a61-ac6a7262ea80 .content {
	padding: 0;
}

#cmp_676a4758-f719-49d8-9a61-ac6a7262ea80 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_676a4758-f719-49d8-9a61-ac6a7262ea80 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_75054da6-99c6-4af7-8391-103db01e3eb1/component.css
 */
#cmp_75054da6-99c6-4af7-8391-103db01e3eb1 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_75054da6-99c6-4af7-8391-103db01e3eb1 .content {
	padding: 0;
}

#cmp_75054da6-99c6-4af7-8391-103db01e3eb1 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_75054da6-99c6-4af7-8391-103db01e3eb1 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_8da87048-fc8e-4ac7-89a9-738d2b1e188f/component.css
 */
#cmp_8da87048-fc8e-4ac7-89a9-738d2b1e188f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_8da87048-fc8e-4ac7-89a9-738d2b1e188f .content {
	padding: 0;
}

#cmp_8da87048-fc8e-4ac7-89a9-738d2b1e188f .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_8da87048-fc8e-4ac7-89a9-738d2b1e188f .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_a27c0684-f69a-4745-b008-e0de653c04ef/component.css
 */
#cmp_a27c0684-f69a-4745-b008-e0de653c04ef {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_a27c0684-f69a-4745-b008-e0de653c04ef .content {
	padding: 0;
}

#cmp_a27c0684-f69a-4745-b008-e0de653c04ef .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_a27c0684-f69a-4745-b008-e0de653c04ef .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_a7cb01ff-62d4-4f07-bcdf-d816f33e4bd8/component.css
 */
#cmp_a7cb01ff-62d4-4f07-bcdf-d816f33e4bd8 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_a7cb01ff-62d4-4f07-bcdf-d816f33e4bd8 .content {
	padding: 0;
}

#cmp_a7cb01ff-62d4-4f07-bcdf-d816f33e4bd8 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_a7cb01ff-62d4-4f07-bcdf-d816f33e4bd8 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_d4dc6b21-7e65-4e05-b13a-453e10430758/component.css
 */
#cmp_d4dc6b21-7e65-4e05-b13a-453e10430758 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_d4dc6b21-7e65-4e05-b13a-453e10430758 .content {
	padding: 0;
}

#cmp_d4dc6b21-7e65-4e05-b13a-453e10430758 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_d4dc6b21-7e65-4e05-b13a-453e10430758 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/breadtutorials/cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd/component.css
 */
#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd {
	background-color: #FFFFFF;
}

#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_e1a96624-6f82-4558-ba6c-d6a96e6f13cd ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/breadtutorials/cmp_f3afc474-e751-4183-b21f-7f367628924e/component.css
 */
#cmp_f3afc474-e751-4183-b21f-7f367628924e {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_f3afc474-e751-4183-b21f-7f367628924e .content {
	padding: 0;
}

#cmp_f3afc474-e751-4183-b21f-7f367628924e .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_f3afc474-e751-4183-b21f-7f367628924e .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/checkout/cmp_3e790771-88dd-435a-a773-306880892d6c/component.css
 */
#cmp_3e790771-88dd-435a-a773-306880892d6c {
	background-color: #FFFFFF;
}

#cmp_3e790771-88dd-435a-a773-306880892d6c h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_3e790771-88dd-435a-a773-306880892d6c h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_3e790771-88dd-435a-a773-306880892d6c h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_3e790771-88dd-435a-a773-306880892d6c p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3e790771-88dd-435a-a773-306880892d6c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3e790771-88dd-435a-a773-306880892d6c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/checkout/cmp_9598af5f-c2cd-40fe-8cde-aa55d3b75fd7/component.css
 */
#cmp_9598af5f-c2cd-40fe-8cde-aa55d3b75fd7 .checkout_content {
  overflow: auto;
}

#cmp_9598af5f-c2cd-40fe-8cde-aa55d3b75fd7 .checkout_content section {
  border-color: #F5F5F5;
}

#cmp_9598af5f-c2cd-40fe-8cde-aa55d3b75fd7 .cart_listing table {
  border-color: #F5F5F5;
}

/*
 * components/checkout/cmp_9bce0ada-2929-44f4-b11a-9567500b88d6/component.css
 */
#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 {
	background-color: #FFFFFF;
}

#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9bce0ada-2929-44f4-b11a-9567500b88d6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/contact/cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb/component.css
 */
#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb {
	background-color: #FFFFFF;
}

#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_68f9ec60-01c1-4f27-b0ca-255607e1c4eb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/contact/cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab/component.css
 */
#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab {
	background-color: #FFFFFF;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_92ae89e2-8243-48dc-b1eb-a1acfdc6e6ab ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/customer/account/cmp_27f87129-e31f-4996-b337-fabe3d6d4d48/component.css
 */
#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 {
	background-color: #FFFFFF;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 14px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_27f87129-e31f-4996-b337-fabe3d6d4d48 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/customer/account/cmp_6c9dad24-2020-4017-83b1-cb079e8a6bfe/component.css
 */

/*
 * components/customer/edit/cmp_e61f7f99-5a78-48e2-a41b-6db0912d06cb/component.css
 */

/*
 * components/customer/forgot_password/cmp_1c1b2d0e-54db-4c3f-b50d-319a5a977eb7/component.css
 */

#cmp_1c1b2d0e-54db-4c3f-b50d-319a5a977eb7  {
	padding-bottom: 120px;
}
/*
 * components/customer/forgot_password/cmp_8fbea13f-90c1-4938-8f18-444b4018db58/component.css
 */
#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 {
	background-color: #FFFFFF;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8fbea13f-90c1-4938-8f18-444b4018db58  {
	padding: 50px 0;
}
#cmp_8fbea13f-90c1-4938-8f18-444b4018db58 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/login/cmp_0f92dadd-4613-4780-b8aa-f684f8004679/component.css
 */

#cmp_0f92dadd-4613-4780-b8aa-f684f8004679  {
	padding-bottom: 120px;
}
/*
 * components/customer/login/cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee/component.css
 */
#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee {
	background-color: #FFFFFF;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee  {
	padding: 50px 0;
}
#cmp_a2af72f2-9b74-4913-a6b2-da14670a47ee h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/order/cmp_f8d75da5-f5b7-426c-bcc6-d81cbd038924/component.css
 */

/*
 * components/customer/password_reset/cmp_81c9bc91-f9ac-4eac-967c-31e48302ce63/component.css
 */

#cmp_81c9bc91-f9ac-4eac-967c-31e48302ce63  {
	padding-bottom: 120px;
}
/*
 * components/customer/password_reset/cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024/component.css
 */
#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 {
	background-color: #FFFFFF;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024  {
	padding: 50px 0;
}
#cmp_cf55c9fe-9e07-4f9e-8c59-2d891fc9d024 h1 {
	margin-bottom: 15px;
}
/*
 * components/customer/thank_you/cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b/component.css
 */
#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b {
	background-color: #FFFFFF;
}

#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ad9377a9-02de-4496-bcd5-395dae9fd08b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/customer/thank_you/cmp_bb33bfef-fb4e-4ab4-afa1-234d01aae1fd/component.css
 */

/*
 * components/faq/cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee/component.css
 */
#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee {
	background-color: #FFFFFF;
}

#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0c0fe205-34ea-45ba-b0fa-5961b0b983ee ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/faq/cmp_753a7231-8163-4f5e-b80e-d42689121a82/component.css
 */
#cmp_753a7231-8163-4f5e-b80e-d42689121a82 {
	background-color: #FFFFFF;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_753a7231-8163-4f5e-b80e-d42689121a82 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/gifts/cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c/component.css
 */
#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c {
	background-color: #FFFFFF;
}

#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_1ea2d7df-8abd-46b5-96a4-7d4e0a396f7c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/gifts/cmp_242aaad1-f206-4169-bb3c-13aae8fe5ed3/component.css
 */
#cmp_242aaad1-f206-4169-bb3c-13aae8fe5ed3 img {
	max-width: 100%;
}

/*
 * components/gifts/cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98/component.css
 */
#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 {
	background-color: #FFFFFF;
}

#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3430e459-83c2-4f7d-84aa-c808afbcfa98 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/gifts/cmp_383e59b6-da4b-4f9e-a33a-07024662d986/component.css
 */
#cmp_383e59b6-da4b-4f9e-a33a-07024662d986 img {
	max-width: 100%;
}

/*
 * components/gifts/cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3/component.css
 */
#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 {
	background-color: #FFFFFF;
}

#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_411a2ae2-4077-4be0-8ca4-c0cc7b29b6c3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/gifts/cmp_7219afe9-0a6c-4209-ad8e-317ee7d5edf6/component.css
 */
#cmp_7219afe9-0a6c-4209-ad8e-317ee7d5edf6 img {
	max-width: 100%;
}

/*
 * components/gifts/cmp_d79a529b-be03-4add-b887-b85a4a16b6b1/component.css
 */
#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 {
	background-color: #FFFFFF;
}

#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_d79a529b-be03-4add-b887-b85a4a16b6b1 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/gifts/cmp_f1fd7f23-9ea7-4200-9a89-ca153097ed56/component.css
 */
#cmp_f1fd7f23-9ea7-4200-9a89-ca153097ed56 img {
	max-width: 100%;
}

/*
 * components/global/cmp_30470c9d-1888-4220-9101-91b43394a15a/component.css
 */
#cmp_30470c9d-1888-4220-9101-91b43394a15a.footer {
	background-color: rgb(255, 255, 255);
	font-family: Quicksand;
	color: rgb(152, 226, 238);
	padding-top: 10px;
	padding-bottom: 10px;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social a {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social svg path {
	fill: rgb(255, 71, 71);
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social a:hover svg path,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social a:focus svg path,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social a:active svg path {
	fill: rgb(46, 46, 46);
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a.footer .toggler-container {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a.footer .navbar-toggler {
	color: rgb(177, 237, 245);
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc {
	border-top: 1px solid #e1e1e1;
	letter-spacing: 1px;
	text-align: center;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc img {
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc p,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-tributes p {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-tributes p a {
	color: rgb(152, 226, 238);
	padding: 0;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-tributes p a:hover,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-tributes p a:focus,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-tributes p a:active {
	color: rgb(152, 226, 238);
	text-decoration: none;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-directory {
	text-align: center;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-list {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-list .footer-item {
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;

	padding: 8px 18px;
	position: relative;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-list .footer-link {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-list .footer-link:hover,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-list .footer-link:focus,
#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-list .footer-link:active {
	color: rgb(152, 226, 238);
	text-decoration: none;
}

@media (max-width: 767px) {
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .col-sm-12,
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .col-xs-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

@media (min-width: 768px) {
	#cmp_30470c9d-1888-4220-9101-91b43394a15a.footer {
		-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;

		padding-top: 25px;
		padding-bottom: 25px;
	}
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-directory {
		-webkit-order: 1;
		-moz-order: 1;
		-ms-order: 1;
		order: 1;

		text-align: left;
	}
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		padding-top: 0;
		padding-bottom: 0;
		text-align: right;
	}
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc p {
		display: inline-block;
	}
}

@media (min-width: 992px) {
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc {
		-webkit-order: 2;
		-moz-order: 2;
		-ms-order: 2;
		order: 2;

		border-top: none;
	}
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-cc p {
		display: block;
	}
	#cmp_30470c9d-1888-4220-9101-91b43394a15a .footer-social {
		-webkit-order: 3;
		-moz-order: 3;
		-ms-order: 3;
		order: 3;
	}
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a ol {
    list-style: decimal;
    list-style-position: inside;
    color: rgb(152, 226, 238);
    font-family: Quicksand;
    font-size: ;
}

#cmp_30470c9d-1888-4220-9101-91b43394a15a ul {
    list-style: none;
    list-style-position: inside;
    color: rgb(152, 226, 238);
    font-family: Quicksand;
    font-size: ;
}

/*
 * components/global/cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8/component.css
 */
#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar {
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	border-top: 4px solid rgb(177, 237, 245);
	padding: 0;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar a:hover,
#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar a:focus,
#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar a:active {
	color: rgb(177, 237, 245);
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-brand {
	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;

	max-width: 100%;
	color: #333333;
	font-family: Bree Serif;
	font-size: 28px;
	margin: 0;
	padding: 15px;
	text-align: center;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-brand img {
	max-width: 100%;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar .navbar-toggler {
	background-color: rgb(177, 237, 245);
	border-radius: 0;
	color: rgb(0, 0, 0);
	font-size: 16px;
	letter-spacing: 0.167em;
	padding: 15px;
	text-transform: uppercase;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar .navbar-toggler:hover,
#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar .navbar-toggler:focus,
#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar .navbar-toggler:active {
	background-color: rgb(181, 181, 181);
	color: #FFFFFF;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-nav li {
	padding-top: 10px;
	padding-bottom: 10px;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-nav .nav-link {
	color: rgb(51, 51, 51);
	font-family: Abel;
	font-size: 16px;;
	letter-spacing: 1px;
	padding: 8px 18px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8.navbar {
		-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;

		padding: 15px;
		padding-bottom: 0;
	}
	#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-brand {
		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-toggleable-sm {
		-webkit-flex-shrink: 0;
		-moz-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;

		-webkit-flex-grow: 2;
		-moz-flex-grow: 2;
		-ms-flex-grow: 2;
		flex-grow: 2;

	}
	#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-nav {
		-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;

		padding: 0;
		padding-bottom: 15px;
	}
	#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 .navbar-nav li {
		padding: 0;
	}
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 ol {
    list-style: decimal;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

#cmp_312ac362-2fdd-4417-9d68-5fa0ff06a1f8 ul {
    list-style: none;
    list-style-position: inside;
    color: ;
    font-family: ;
    font-size: ;
}

/*
 * components/global/cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f/component.css
 */
#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f {
	background-color: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f .btn:hover {
	background-color: ;
	color: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_861b3ca5-e10f-4fe1-9014-54051b7a9f1f ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/index/cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431/component.css
 */
#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 {
	padding: 0;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 60px;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content h2 {
	color: #FFFFFF;
	font-family: Josefin Sans;
	font-size: 20px;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content h3 {
	color: #FFFFFF;
	font-family: Alice;
	font-size: 20px;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content p {
	color: #FFFFFF;
	font-family: Abel;
	font-size: 24px;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(39, 39, 39);
	font-family: Josefin Sans;
	font-size: 14px;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 h1 {
	margin-top: 20px;
	margin-bottom: 10px;
}
#cmp_5f4d3af5-026d-42b5-a854-b0e6a3ed9431 p {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96/component.css
 */
#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 {
	background-color: rgb(51, 51, 51);
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 h1 {
	color: rgb(255, 255, 255);
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 h2 {
	color: rgb(255, 255, 255);
	font-family: Alice;
	font-size: 22px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 14px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_60f73b5d-06cf-4814-9b21-3d06f7e85f96 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/index/cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89/component.css
 */
#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 .content {
	margin: 0 auto;
	max-width: 250px;
}

#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_6b4ccbec-61d8-45ab-93c5-4d453418bd89 p {
	margin-bottom: 35px;
}
/*
 * components/index/cmp_72210036-d07f-402e-878c-8ebb1abcdabf/component.css
 */
#cmp_72210036-d07f-402e-878c-8ebb1abcdabf {
	padding: 0;
	background-color: #FFFFFF;
}

#cmp_72210036-d07f-402e-878c-8ebb1abcdabf .content {
	margin: 0 auto;
	padding: 50px;
}

@media (min-width: 768px) {
	#cmp_72210036-d07f-402e-878c-8ebb1abcdabf .col-md-4:nth-of-type(2n + 1) {
		order: 1;
	}
	#cmp_72210036-d07f-402e-878c-8ebb1abcdabf .col-md-4:nth-of-type(2n) {
		order: 2;
	}
}

#cmp_72210036-d07f-402e-878c-8ebb1abcdabf h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_72210036-d07f-402e-878c-8ebb1abcdabf h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_72210036-d07f-402e-878c-8ebb1abcdabf h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_72210036-d07f-402e-878c-8ebb1abcdabf p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_72210036-d07f-402e-878c-8ebb1abcdabf h3 {
	margin-bottom: 25px;
}
/*
 * components/index/cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b/component.css
 */
#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b {
	background-color: #FFFFFF;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_80024659-bb19-47cc-8ffa-ae0a98bb2c3b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/index/cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b/component.css
 */
#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b {
	background-color: rgb(255, 255, 255);
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b h3 {
	color: rgb(115, 206, 105);
	font-family: Tajawal;
	font-size: 24px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 13px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b  {
	padding: 60px 0;
}
#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b h1 {
	margin-bottom: 15px;
}
#cmp_a3c3888f-dd6c-40d3-966d-90f0c04a8a5b p {
	margin-bottom: 20px;
}
/*
 * components/index/cmp_ae1db3ac-db10-4c51-8cc2-cbbda14fdd50/component.css
 */
#cmp_ae1db3ac-db10-4c51-8cc2-cbbda14fdd50 img {
	max-width: 100%;
}

/*
 * components/index/cmp_d1f96794-fca4-40d0-bec3-665fb137c64c/component.css
 */
#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c {
	background-color: rgb(51, 51, 51);
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c h1 {
	color: rgb(255, 255, 255);
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_d1f96794-fca4-40d0-bec3-665fb137c64c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/info/cmp_0c6ed0d5-eec9-4e7f-8714-1154a0812916/component.css
 */
#cmp_0c6ed0d5-eec9-4e7f-8714-1154a0812916 img {
	max-width: 100%;
}

/*
 * components/info/cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e/component.css
 */
#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e {
	background-color: #FFFFFF;
}

#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_149ebb0f-4e74-4008-8a5e-bd219474f56e ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/info/cmp_870d42f2-f707-4017-b368-b75873cbd305/component.css
 */
#cmp_870d42f2-f707-4017-b368-b75873cbd305 {
	background-color: #FFFFFF;
}

#cmp_870d42f2-f707-4017-b368-b75873cbd305 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_870d42f2-f707-4017-b368-b75873cbd305 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_870d42f2-f707-4017-b368-b75873cbd305 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_870d42f2-f707-4017-b368-b75873cbd305 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_870d42f2-f707-4017-b368-b75873cbd305 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_870d42f2-f707-4017-b368-b75873cbd305 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/info/cmp_a1b28346-3128-46cd-a0a3-393f065ddd37/component.css
 */
#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 {
	background-color: #FFFFFF;
}

#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a1b28346-3128-46cd-a0a3-393f065ddd37 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/info/cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f/component.css
 */
#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f {
	background-color: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f .btn {
	background-color: ;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f .btn:hover {
	background-color: ;
	color: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_afb9d3c0-e392-4459-a81f-82c9fb31f55f ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/info/cmp_c805619e-b063-4b81-88bb-575b58efba47/component.css
 */
#cmp_c805619e-b063-4b81-88bb-575b58efba47 img {
	max-width: 100%;
}

/*
 * components/info/cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5/component.css
 */
#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 {
	background-color: ;
}

#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 h1 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 h2 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 h3 {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 p {
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: ;
	font-family: ;
	font-size: ;
}

#cmp_d43be9d5-863d-488b-95e1-2a04f7818bc5 ul {
	list-style: disc;
	list-style-position: inside;
	color: ;
	font-family: ;
	font-size: ;
}

/*
 * components/ingredients/cmp_01377ed8-6801-43fb-8f65-962dc66c8ead/component.css
 */
#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead {
	background-color: #FFFFFF;
}

#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_01377ed8-6801-43fb-8f65-962dc66c8ead ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_1dd3d689-525b-4146-9066-fe124629cc83/component.css
 */
#cmp_1dd3d689-525b-4146-9066-fe124629cc83 {
	background-color: #FFFFFF;
}

#cmp_1dd3d689-525b-4146-9066-fe124629cc83 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_1dd3d689-525b-4146-9066-fe124629cc83 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_1dd3d689-525b-4146-9066-fe124629cc83 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_1dd3d689-525b-4146-9066-fe124629cc83 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_1dd3d689-525b-4146-9066-fe124629cc83 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_1dd3d689-525b-4146-9066-fe124629cc83 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_20617823-717f-451c-8d90-e6cceee6b4e2/component.css
 */
#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 {
	background-color: #FFFFFF;
}

#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_20617823-717f-451c-8d90-e6cceee6b4e2 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_2496036b-19af-4a0c-a654-5edfe6ec2490/component.css
 */
#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 {
	background-color: #FFFFFF;
}

#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_2496036b-19af-4a0c-a654-5edfe6ec2490 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_293da014-db55-4992-841e-51a606103b55/component.css
 */
#cmp_293da014-db55-4992-841e-51a606103b55 {
	background-color: #FFFFFF;
}

#cmp_293da014-db55-4992-841e-51a606103b55 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_293da014-db55-4992-841e-51a606103b55 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_293da014-db55-4992-841e-51a606103b55 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_293da014-db55-4992-841e-51a606103b55 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_293da014-db55-4992-841e-51a606103b55 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_293da014-db55-4992-841e-51a606103b55 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_331fa3b6-ea76-423b-9a46-8c55bd145670/component.css
 */
#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 {
	background-color: #FFFFFF;
}

#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_331fa3b6-ea76-423b-9a46-8c55bd145670 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_37b923e5-6916-4551-ac53-56dcd0362b58/component.css
 */
#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 {
	background-color: #FFFFFF;
}

#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_37b923e5-6916-4551-ac53-56dcd0362b58 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99/component.css
 */
#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 {
	background-color: #FFFFFF;
}

#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3c546d4e-ad9e-496b-98f9-2d985ccabc99 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a/component.css
 */
#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a {
	background-color: #FFFFFF;
}

#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_3e5ce88c-7d30-431e-9266-079c67b8c41a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3/component.css
 */
#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 {
	background-color: #FFFFFF;
}

#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_460fabc4-6ae8-4982-92bf-b83cd38d5cc3 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_47968e7e-73a9-426f-9876-16c4a63d1cca/component.css
 */
#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca {
	background-color: #FFFFFF;
}

#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_47968e7e-73a9-426f-9876-16c4a63d1cca ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d/component.css
 */
#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d {
	background-color: #FFFFFF;
}

#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_50d4d5bc-2b8d-4a0f-96c5-7cfb18ee1f5d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28/component.css
 */
#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 {
	background-color: #FFFFFF;
}

#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5217b5fb-545f-4d93-aee4-dbc49cd6ab28 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_56f61b46-802f-4568-bab8-8a686f8f0533/component.css
 */
#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 {
	background-color: #FFFFFF;
}

#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_56f61b46-802f-4568-bab8-8a686f8f0533 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee/component.css
 */
#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee {
	background-color: #FFFFFF;
}

#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5aeb8ae5-6452-4456-96bb-4084be9813ee ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f/component.css
 */
#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f {
	background-color: #FFFFFF;
}

#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5fe44c83-b50a-48bc-9e7a-882ae851f13f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a/component.css
 */
#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a {
	background-color: #FFFFFF;
}

#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_667bdaef-f8f4-4456-8428-e6fed90cf95a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15/component.css
 */
#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 {
	background-color: #FFFFFF;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 p {
	color: rgb(95, 95, 95);
	font-family: Cabin;
	font-size: 16px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Cabin;
	font-size: 16px;
}

#cmp_67e3c033-d0c9-4a80-8c93-bf066e782c15 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Cabin;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d/component.css
 */
#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d {
	background-color: #FFFFFF;
}

#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_6a6f9c37-39fc-4f05-87c8-f2974bec501d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_6bb65802-e10f-490e-925f-07de454fc411/component.css
 */
#cmp_6bb65802-e10f-490e-925f-07de454fc411 {
	background-color: #FFFFFF;
}

#cmp_6bb65802-e10f-490e-925f-07de454fc411 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_6bb65802-e10f-490e-925f-07de454fc411 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_6bb65802-e10f-490e-925f-07de454fc411 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_6bb65802-e10f-490e-925f-07de454fc411 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_6bb65802-e10f-490e-925f-07de454fc411 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_6bb65802-e10f-490e-925f-07de454fc411 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b/component.css
 */
#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b {
	background-color: #FFFFFF;
}

#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_770501d9-eb21-444f-8d46-3d44b2cc3c1b ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_7900b6cd-cb5a-41fa-b139-565f05424116/component.css
 */
#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 {
	background-color: #FFFFFF;
}

#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_7900b6cd-cb5a-41fa-b139-565f05424116 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_85a9b40f-4d46-4759-af43-5911a11bb283/component.css
 */
#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 {
	background-color: #FFFFFF;
}

#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_85a9b40f-4d46-4759-af43-5911a11bb283 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_8f59e657-7274-4556-b237-4aa2aa051082/component.css
 */
#cmp_8f59e657-7274-4556-b237-4aa2aa051082 {
	background-color: #FFFFFF;
}

#cmp_8f59e657-7274-4556-b237-4aa2aa051082 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_8f59e657-7274-4556-b237-4aa2aa051082 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_8f59e657-7274-4556-b237-4aa2aa051082 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_8f59e657-7274-4556-b237-4aa2aa051082 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8f59e657-7274-4556-b237-4aa2aa051082 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8f59e657-7274-4556-b237-4aa2aa051082 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_900c4f2d-95a6-46e2-804d-002c0f15f257/component.css
 */
#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 {
	background-color: #FFFFFF;
}

#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_900c4f2d-95a6-46e2-804d-002c0f15f257 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_936debba-8b36-4be3-a8ff-6e74b8068f32/component.css
 */
#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 {
	background-color: #FFFFFF;
}

#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_936debba-8b36-4be3-a8ff-6e74b8068f32 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8/component.css
 */
#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 {
	background-color: #FFFFFF;
}

#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a3b62bcb-731e-4400-8e62-654d0a8409b8 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df/component.css
 */
#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df {
	background-color: #FFFFFF;
}

#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_adbe2ea7-b41a-4875-bb78-6d605bc560df ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_b1acbfc3-0279-415a-bc42-382e457f64f6/component.css
 */
#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 {
	background-color: #FFFFFF;
}

#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b1acbfc3-0279-415a-bc42-382e457f64f6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178/component.css
 */
#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 {
	background-color: #FFFFFF;
}

#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b4d3a7b3-ebac-4371-b06e-272b3b64f178 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_b580d94e-cb56-4450-905b-7efa4d7278bb/component.css
 */
#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb {
	background-color: #FFFFFF;
}

#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_b580d94e-cb56-4450-905b-7efa4d7278bb ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_bcc39377-5a99-437c-ace6-2674905f5107/component.css
 */
#cmp_bcc39377-5a99-437c-ace6-2674905f5107 {
	background-color: #FFFFFF;
}

#cmp_bcc39377-5a99-437c-ace6-2674905f5107 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_bcc39377-5a99-437c-ace6-2674905f5107 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_bcc39377-5a99-437c-ace6-2674905f5107 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_bcc39377-5a99-437c-ace6-2674905f5107 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_bcc39377-5a99-437c-ace6-2674905f5107 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_bcc39377-5a99-437c-ace6-2674905f5107 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_c02eab98-6673-4675-8181-e25fc3d0a004/component.css
 */
#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 {
	background-color: #FFFFFF;
}

#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_c02eab98-6673-4675-8181-e25fc3d0a004 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_cd724aed-2506-4034-8e48-1f952297d69a/component.css
 */
#cmp_cd724aed-2506-4034-8e48-1f952297d69a {
	background-color: #FFFFFF;
}

#cmp_cd724aed-2506-4034-8e48-1f952297d69a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_cd724aed-2506-4034-8e48-1f952297d69a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_cd724aed-2506-4034-8e48-1f952297d69a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_cd724aed-2506-4034-8e48-1f952297d69a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cd724aed-2506-4034-8e48-1f952297d69a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cd724aed-2506-4034-8e48-1f952297d69a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a/component.css
 */
#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a {
	background-color: #FFFFFF;
}

#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_db05ea99-dc45-43ce-bd54-6f4debb0045a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f/component.css
 */
#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f {
	background-color: #FFFFFF;
}

#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f36e2999-d266-46da-bbfb-4d6c190fbd2f ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/ingredients/cmp_f55ba471-981b-4cab-9735-76af7888d075/component.css
 */
#cmp_f55ba471-981b-4cab-9735-76af7888d075 {
	background-color: #FFFFFF;
}

#cmp_f55ba471-981b-4cab-9735-76af7888d075 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_f55ba471-981b-4cab-9735-76af7888d075 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f55ba471-981b-4cab-9735-76af7888d075 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f55ba471-981b-4cab-9735-76af7888d075 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f55ba471-981b-4cab-9735-76af7888d075 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f55ba471-981b-4cab-9735-76af7888d075 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/shipping/cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636/component.css
 */
#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 {
	background-color: #FFFFFF;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 h3 {
	color: rgb(255, 61, 61);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 12px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cf85f9b1-55ee-4aa3-a811-85b65de29636 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/shipping/cmp_e92a0b92-d1bc-44a3-a31d-e43f5827a809/component.css
 */
#cmp_e92a0b92-d1bc-44a3-a31d-e43f5827a809 img {
	max-width: 100%;
}

/*
 * components/shipping/cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21/component.css
 */
#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 {
	background-color: #FFFFFF;
}

#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ea30a3b1-4d79-41a6-9005-165d14b2de21 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/shop/listing/cmp_078589a2-3590-4fe2-bb20-c8144333165f/component.css
 */
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .shop-listing-item {
	color: rgb(95, 95, 95);
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .shop-listing-item:hover,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .shop-listing-item:focus {
	text-decoration: none;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .shop-listing-item__image {
	background-size: cover;
	background-position: center center;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .shop-listing-item__name {
	margin: 10px 0;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .shop-listing-item__price {
	margin: 10px 0 30px;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .product_paging {
	-webkit-display: flex;
	-ms-display: flex;
	display: flex;
	justify-content: center;

	margin: 20px 0;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .product_page a,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .next_page a,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .prev_page a {
	display: block;
	padding: 12px 15px;
	margin: 0 2px;
	border: 1px solid #E0E0E0;
	border-radius: 5px;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .product_page.active a,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .product_page a:hover,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .product_page a:focus,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .next_page a:hover,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .next_page a:focus,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .prev_page a:hover,
#cmp_078589a2-3590-4fe2-bb20-c8144333165f .prev_page a:focus {
	text-decoration: none;
	background-color: #F9F9F9;
}

#cmp_078589a2-3590-4fe2-bb20-c8144333165f .product_page.active a {
	color: black;
}

/*
 * components/shop/listing/cmp_1e414d53-6b80-4187-8c6c-a6491e733212/component.css
 */
#cmp_1e414d53-6b80-4187-8c6c-a6491e733212 {
	justify-content: center;
}

#cmp_1e414d53-6b80-4187-8c6c-a6491e733212 ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

/*
 * components/shop/listing/cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a/component.css
 */
#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a {
	background-color: #FFFFFF;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a  {
	padding: 50px 0 15px;
}
#cmp_5e37a326-9990-4d13-98d5-2f6a6d47f48a h1 {
	margin-bottom: 15px;
}
/*
 * components/shop/listing/cmp_7db54554-57fd-40ce-a763-35eab7148d5a/component.css
 */
#cmp_7db54554-57fd-40ce-a763-35eab7148d5a {
	justify-content: center;
}

#cmp_7db54554-57fd-40ce-a763-35eab7148d5a ul.nav-pills {
	background-color: #FAFAFA;
	border: 1px solid #EEEEEE;
	border-radius: 3px;
	padding: 3px;
}

#cmp_7db54554-57fd-40ce-a763-35eab7148d5a  {
	border-bottom: 1px solid #E1E1E1;
	margin-bottom: 35px;
	padding-bottom: 35px;
}
/*
 * components/shop/product/cmp_52ea7021-858e-47e1-bfe8-17deaa95d086/component.css
 */
#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product__name {
	margin-bottom: 10px;
}

#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product__price {
	margin-bottom: 20px;
}

#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product select {
	width: auto;
}

#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product__add-to-cart {
	margin-bottom: 20px;
}

#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product__review-share-desktop {
	border-top: 1px solid #E1E1E1;
	margin-bottom: 40px;
}

#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product__review-share-desktop .col-xs-6 {
	padding-top: 10px;
}

#cmp_52ea7021-858e-47e1-bfe8-17deaa95d086 .shop-product__review-share-desktop .col-xs-6 + .col-xs-6 {
	border-left: 1px solid #E1E1E1;
}

/*
 * components/shop/product/cmp_e4bf2511-5212-42ed-8184-b991d0374273/component.css
 */
#cmp_e4bf2511-5212-42ed-8184-b991d0374273.shop-product-header {
	padding: 50px 0 15px;
}

/*
 * components/simplecreations/cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9/component.css
 */
#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 {
	padding: 0;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Fredoka One;
	font-size: 45px;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content h2 {
	color: #FFFFFF;
	font-family: Alice;
	font-size: 22px;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content h3 {
	color: #FFFFFF;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content p {
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_51baa93f-53b4-4e93-bf96-492a14edf4e9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/simplecreations/cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1/component.css
 */
#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 {
	padding: 0;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Fredoka One;
	font-size: 45px;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content h2 {
	color: #FFFFFF;
	font-family: Alice;
	font-size: 22px;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content h3 {
	color: #FFFFFF;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content p {
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_99a4dfd6-1696-47d5-82d5-36ddedaf3cf1 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/simplecreations/cmp_9d46acc8-52cb-4872-9432-c6869545998a/component.css
 */
#cmp_9d46acc8-52cb-4872-9432-c6869545998a {
	background-color: #FFFFFF;
}

#cmp_9d46acc8-52cb-4872-9432-c6869545998a h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_9d46acc8-52cb-4872-9432-c6869545998a h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_9d46acc8-52cb-4872-9432-c6869545998a h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_9d46acc8-52cb-4872-9432-c6869545998a p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9d46acc8-52cb-4872-9432-c6869545998a ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9d46acc8-52cb-4872-9432-c6869545998a ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/simplecreations/cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f/component.css
 */
#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f {
	padding: 0;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Fredoka One;
	font-size: 45px;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content h2 {
	color: #FFFFFF;
	font-family: Alice;
	font-size: 22px;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content h3 {
	color: #FFFFFF;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content p {
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_bbeb709f-3986-4f50-ac06-cbe8083c203f .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

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

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

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

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

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

/*
 * components/simplecreations/cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d/component.css
 */
#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d {
	padding: 0;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content {
	background-color: #333333;
	padding: 20px;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bangers;
	font-size: 72px;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content h2 {
	color: #FFFFFF;
	font-family: Fredoka One;
	font-size: 48px;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content h3 {
	color: #FFFFFF;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content p {
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content .btn {
	background-color: rgb(51, 51, 51);
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .hero-content .btn:hover {
	background-color: rgb(51, 51, 51);
	color: rgb(51, 51, 51);
}


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

@media(min-width: 768px) {
	#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f5b3df8a-fd69-4e98-8670-5b72122f530d .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/sold_out/cmp_5d693723-c49d-4ef6-91cf-8a5c2b9ba509/component.css
 */
#cmp_5d693723-c49d-4ef6-91cf-8a5c2b9ba509 img {
	max-width: 100%;
}

#cmp_5d693723-c49d-4ef6-91cf-8a5c2b9ba509  {
	padding-top: 50px;
}
/*
 * components/sold_out/cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0/component.css
 */
#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 {
	background-color: #FFFFFF;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_9d8d0cc7-7532-495c-99a3-cdb612ebc8e0  {
	padding-bottom: 50px;
}
/*
 * components/subscribe/cmp_78a9d1c9-d85c-4988-965e-e8a34b851923/component.css
 */
#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 {
	background-color: #FFFFFF;
}

#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_78a9d1c9-d85c-4988-965e-e8a34b851923 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/subscribe/cmp_cacf79de-f051-475a-a350-967146d4a5b9/component.css
 */

/*
 * components/subscribe/cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9/component.css
 */
#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 {
	background-color: #FFFFFF;
}

#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f3a41880-d374-4cc3-b45f-ebbeb01e28a9 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * 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 #D3D3D3;

	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 #D3D3D3;
}

#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: 16px;

	color: rgb(0, 0, 0);
	background-color: rgb(177, 237, 245);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-btn-cart:hover {
	color: #FFFFFF;
	background-color: rgb(181, 181, 181);
}

#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: #38BFC3;
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .addons-form-group .control-label {
	font-size: 12px;
	color: #9B9B9B;

	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: rgb(0, 0, 0);
	background-color: rgb(177, 237, 245);
}

#cmp_8187b926-6046-48b1-83b7-ad1f2bc466d9 .btn.btn-primary.addons-continue-btn:hover {
	color: #FFFFFF;
	background-color: rgb(181, 181, 181);
}

@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/survey_step/cmp_97f9d16a-c142-4f0e-80d0-cd302b0c148f/component.css
 */
#cmp_97f9d16a-c142-4f0e-80d0-cd302b0c148f {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/survey_step/cmp_a0b69eb3-a68b-488f-b768-cfe7fcef0e57/component.css
 */
#cmp_a0b69eb3-a68b-488f-b768-cfe7fcef0e57.survey h2 {
	margin-bottom: 1em;
}

#cmp_a0b69eb3-a68b-488f-b768-cfe7fcef0e57.survey .radio input[type="radio"],
#cmp_a0b69eb3-a68b-488f-b768-cfe7fcef0e57.survey .checkbox input[type="checkbox"] {
	margin-right: 0.5em;
}

/*
 * components/subscribe_flow/terms_step/cmp_28744ce2-470e-4d0f-b817-959a33958121/component.css
 */
#cmp_28744ce2-470e-4d0f-b817-959a33958121 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/terms_step/cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6/component.css
 */
#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 {
	background-color: #FFFFFF;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 16px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Abel;
	font-size: 16px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_a085b449-dffe-4fe2-a2d1-c3a6315e21c6 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/subscribe_flow/terms_step/cmp_be674d63-8086-4509-8a7b-9c26f79c4530/component.css
 */
#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 {
	background-color: #FFFFFF;
}

#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 16px;
}

#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_be674d63-8086-4509-8a7b-9c26f79c4530 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/subscribe_flow/terms_step/cmp_cd0920f7-3659-4ddc-b71c-4c86305910d2/component.css
 */

/*
 * components/subscribe_flow/variant_step/cmp_6a8f9466-a733-46b8-93f7-9f3178ae90b9/component.css
 */
#cmp_6a8f9466-a733-46b8-93f7-9f3178ae90b9 {
	padding: 50px 0 15px;
}

/*
 * components/subscribe_flow/variant_step/cmp_93aacbd6-0269-4722-b978-6bd1f0b8ef43/component.css
 */

/*
 * components/terms/cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c/component.css
 */
#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c {
	background-color: #FFFFFF;
}

#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_0073faf1-cfe7-4b0e-9f1f-a9c729b4a09c ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/terms/cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89/component.css
 */
#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 {
	background-color: #FFFFFF;
}

#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8f6cd984-bc1a-4c4d-9df6-5720c622ea89 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/terms/cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc/component.css
 */
#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc {
	background-color: #FFFFFF;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f4f78ca0-66f0-4e54-9c67-e011a3e3e7dc ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/tutorials/cmp_035ea745-e01f-41be-bb40-e4e8e8296590/component.css
 */
#cmp_035ea745-e01f-41be-bb40-e4e8e8296590 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_035ea745-e01f-41be-bb40-e4e8e8296590 .content {
	padding: 0;
}

#cmp_035ea745-e01f-41be-bb40-e4e8e8296590 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_035ea745-e01f-41be-bb40-e4e8e8296590 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_10bd0d18-2105-4e95-883e-c11f6c7c29bb/component.css
 */
#cmp_10bd0d18-2105-4e95-883e-c11f6c7c29bb {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_10bd0d18-2105-4e95-883e-c11f6c7c29bb .content {
	padding: 0;
}

#cmp_10bd0d18-2105-4e95-883e-c11f6c7c29bb .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_10bd0d18-2105-4e95-883e-c11f6c7c29bb .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_1ba7b55f-f90e-437e-b391-64632b2d0d79/component.css
 */
#cmp_1ba7b55f-f90e-437e-b391-64632b2d0d79 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_1ba7b55f-f90e-437e-b391-64632b2d0d79 .content {
	padding: 0;
}

#cmp_1ba7b55f-f90e-437e-b391-64632b2d0d79 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_1ba7b55f-f90e-437e-b391-64632b2d0d79 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_2094379e-046b-4baf-b876-2048bc895efb/component.css
 */
#cmp_2094379e-046b-4baf-b876-2048bc895efb {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_2094379e-046b-4baf-b876-2048bc895efb .content {
	padding: 0;
}

#cmp_2094379e-046b-4baf-b876-2048bc895efb .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_2094379e-046b-4baf-b876-2048bc895efb .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_2b769417-72d9-4b31-9f3e-d17a8230453d/component.css
 */
#cmp_2b769417-72d9-4b31-9f3e-d17a8230453d {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_2b769417-72d9-4b31-9f3e-d17a8230453d .content {
	padding: 0;
}

#cmp_2b769417-72d9-4b31-9f3e-d17a8230453d .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_2b769417-72d9-4b31-9f3e-d17a8230453d .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_3693016b-d181-4f90-9453-7c035bb78dff/component.css
 */
#cmp_3693016b-d181-4f90-9453-7c035bb78dff {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_3693016b-d181-4f90-9453-7c035bb78dff .content {
	padding: 0;
}

#cmp_3693016b-d181-4f90-9453-7c035bb78dff .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_3693016b-d181-4f90-9453-7c035bb78dff .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_60e9708d-00fb-468a-8a27-e674aa8b9118/component.css
 */
#cmp_60e9708d-00fb-468a-8a27-e674aa8b9118 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_60e9708d-00fb-468a-8a27-e674aa8b9118 .content {
	padding: 0;
}

#cmp_60e9708d-00fb-468a-8a27-e674aa8b9118 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_60e9708d-00fb-468a-8a27-e674aa8b9118 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_61c47bb0-b6dc-4233-bf3b-5d0dbb2cd8ac/component.css
 */
#cmp_61c47bb0-b6dc-4233-bf3b-5d0dbb2cd8ac {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_61c47bb0-b6dc-4233-bf3b-5d0dbb2cd8ac .content {
	padding: 0;
}

#cmp_61c47bb0-b6dc-4233-bf3b-5d0dbb2cd8ac .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_61c47bb0-b6dc-4233-bf3b-5d0dbb2cd8ac .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_627373c7-1dae-482a-9a1a-2c0e674f5d12/component.css
 */
#cmp_627373c7-1dae-482a-9a1a-2c0e674f5d12 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_627373c7-1dae-482a-9a1a-2c0e674f5d12 .content {
	padding: 0;
}

#cmp_627373c7-1dae-482a-9a1a-2c0e674f5d12 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_627373c7-1dae-482a-9a1a-2c0e674f5d12 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_7267641c-c3c3-4eb9-91f0-f3c7afa93a87/component.css
 */
#cmp_7267641c-c3c3-4eb9-91f0-f3c7afa93a87 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_7267641c-c3c3-4eb9-91f0-f3c7afa93a87 .content {
	padding: 0;
}

#cmp_7267641c-c3c3-4eb9-91f0-f3c7afa93a87 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_7267641c-c3c3-4eb9-91f0-f3c7afa93a87 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_726fa2ac-5b1a-4a03-aaad-d96235f3bcdc/component.css
 */
#cmp_726fa2ac-5b1a-4a03-aaad-d96235f3bcdc {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_726fa2ac-5b1a-4a03-aaad-d96235f3bcdc .content {
	padding: 0;
}

#cmp_726fa2ac-5b1a-4a03-aaad-d96235f3bcdc .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_726fa2ac-5b1a-4a03-aaad-d96235f3bcdc .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_990c4e65-353b-4f5f-9a66-bbe90fa5eaae/component.css
 */
#cmp_990c4e65-353b-4f5f-9a66-bbe90fa5eaae {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_990c4e65-353b-4f5f-9a66-bbe90fa5eaae .content {
	padding: 0;
}

#cmp_990c4e65-353b-4f5f-9a66-bbe90fa5eaae .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_990c4e65-353b-4f5f-9a66-bbe90fa5eaae .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_994d9617-0e42-4ad2-8f7b-7abe00f06960/component.css
 */
#cmp_994d9617-0e42-4ad2-8f7b-7abe00f06960 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_994d9617-0e42-4ad2-8f7b-7abe00f06960 .content {
	padding: 0;
}

#cmp_994d9617-0e42-4ad2-8f7b-7abe00f06960 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_994d9617-0e42-4ad2-8f7b-7abe00f06960 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_9e503f60-e278-4374-848a-53e83bf11a91/component.css
 */
#cmp_9e503f60-e278-4374-848a-53e83bf11a91 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_9e503f60-e278-4374-848a-53e83bf11a91 .content {
	padding: 0;
}

#cmp_9e503f60-e278-4374-848a-53e83bf11a91 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_9e503f60-e278-4374-848a-53e83bf11a91 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_b38b91f8-5703-4d1f-a308-7610ada9d6fd/component.css
 */
#cmp_b38b91f8-5703-4d1f-a308-7610ada9d6fd {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_b38b91f8-5703-4d1f-a308-7610ada9d6fd .content {
	padding: 0;
}

#cmp_b38b91f8-5703-4d1f-a308-7610ada9d6fd .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_b38b91f8-5703-4d1f-a308-7610ada9d6fd .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_bdb08042-78c1-4243-8cf1-634ef1238412/component.css
 */
#cmp_bdb08042-78c1-4243-8cf1-634ef1238412 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_bdb08042-78c1-4243-8cf1-634ef1238412 .content {
	padding: 0;
}

#cmp_bdb08042-78c1-4243-8cf1-634ef1238412 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_bdb08042-78c1-4243-8cf1-634ef1238412 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_c407be29-d1b6-481e-ae06-f2aa6fa8ca0f/component.css
 */
#cmp_c407be29-d1b6-481e-ae06-f2aa6fa8ca0f {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_c407be29-d1b6-481e-ae06-f2aa6fa8ca0f .content {
	padding: 0;
}

#cmp_c407be29-d1b6-481e-ae06-f2aa6fa8ca0f .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_c407be29-d1b6-481e-ae06-f2aa6fa8ca0f .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_cc055781-8ce0-42ba-b2d2-df021a6d220a/component.css
 */
#cmp_cc055781-8ce0-42ba-b2d2-df021a6d220a {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_cc055781-8ce0-42ba-b2d2-df021a6d220a .content {
	padding: 0;
}

#cmp_cc055781-8ce0-42ba-b2d2-df021a6d220a .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_cc055781-8ce0-42ba-b2d2-df021a6d220a .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/tutorials/cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852/component.css
 */
#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 {
	background-color: #FFFFFF;
}

#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_e0bbbd92-ece2-4cfa-b9b9-3b0b6f7c6852 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/tutorials/cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36/component.css
 */
#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 {
	background-color: #FFFFFF;
}

#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_ec7130e1-8db9-4c06-9c1e-f8330f44fa36 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/tutorials/cmp_eff86137-d37f-4bd1-b6a5-2024b2b715f7/component.css
 */
#cmp_eff86137-d37f-4bd1-b6a5-2024b2b715f7 {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #ffffff;
}

#cmp_eff86137-d37f-4bd1-b6a5-2024b2b715f7 .content {
	padding: 0;
}

#cmp_eff86137-d37f-4bd1-b6a5-2024b2b715f7 .video_container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

#cmp_eff86137-d37f-4bd1-b6a5-2024b2b715f7 .video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/*
 * components/view-cart/cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa/component.css
 */
#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa {
	padding: 15px 15px 100px 15px;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-thead {
	border-bottom: 1px solid #E1E1E1;
	padding: 10px 0;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-thead h3 {
	text-transform: uppercase;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-item {
	border: 1px solid #E1E1E1;
	padding: 25px 0;
	position: relative;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .product-main {
	margin-bottom: 15px;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .product-label p {
	margin: 0;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .product-label .info {
	color: #333333;
	text-align: right;
	text-transform: uppercase;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .product-label .meta {
	color: #333333;
	font-size: 20px;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .product-rem-btn {
	position: absolute;
	right: 1%;
	top: 1%;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa figure {
	margin: 0 0 15px 0;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-subtotal {
	margin: 50px 0 0 0;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-subtotal h1 {
	margin: 0 0 15px 0;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-subtotal h3 {
	margin: 0 0 25px 0;
	text-transform: uppercase;
}

#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-subtotal p {
	margin: 0 0 25px 0;
}

@media (min-width: 768px) {
	#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .cart-item {
		border-width: 0 0 1px 0;
	}
	#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa .product-rem-btn {
		top: 40%;
	}
	#cmp_a1ebb21b-e06f-4952-823c-3b79d4738caa figure {
		margin: 0;
	}
}

/*
 * components/view-cart/cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488/component.css
 */
#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 {
	background-color: #FFFFFF;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488  {
	padding: 50px 0;;
}
#cmp_f8a39f75-3ad7-4359-a0bb-62f41e095488 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8/component.css
 */
#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 {
	padding: 0;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_03ea5fd5-9e68-4cd0-ba6f-db8544ae4de8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01/component.css
 */
#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 {
	background-color: #FFFFFF;
}

#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_12257cef-b66e-4855-8bb9-2c1a7ba18e01 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_218526aa-205b-435e-a6f0-1c5a2b454904/component.css
 */
#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 {
	background-color: rgb(51, 51, 51);
}

#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 h1 {
	color: rgb(255, 255, 255);
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_218526aa-205b-435e-a6f0-1c5a2b454904 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

/*
 * components/whats_inside/cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07/component.css
 */
#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 {
	padding: 0;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_418571d4-198e-4efc-a7ee-8c342b8f8c07 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e/component.css
 */
#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e {
	padding: 0;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 24px;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_44e8bdb5-56d2-4e2b-8272-8ddf8bc0b46e .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5/component.css
 */
#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 {
	padding: 0;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 22px;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 24px;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_477bebdf-1cd6-4bd0-8b80-394752adaee5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f/component.css
 */
#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f {
	padding: 0;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Josefin Sans;
	font-size: 45px;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content .btn {
	background-color: rgb(51, 51, 51);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 14px;
}

#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_4bfc78c0-9b6f-413b-886f-19f6a608b32f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc/component.css
 */
#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc {
	padding: 0;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content h2 {
	color: #3333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_517077dc-69f0-4e60-a5fe-71a35bcb11bc .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_5887db47-69af-465d-9777-1a1e5a22bfc5/component.css
 */
#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 {
	padding: 0;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content h2 {
	color: rgb(255, 169, 40);
	font-family: Alice;
	font-size: 24px;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_5887db47-69af-465d-9777-1a1e5a22bfc5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4/component.css
 */
#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 {
	background-color: #FFFFFF;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4  {
	padding-top: 60px;
}
#cmp_8287ca04-a8da-404a-8b9b-8eb24d71f7c4 h1 {
	margin-bottom: 15px;
}
/*
 * components/whats_inside/cmp_86148ce8-4541-471f-8864-ec966914201c/component.css
 */
#cmp_86148ce8-4541-471f-8864-ec966914201c {
	padding: 0;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_86148ce8-4541-471f-8864-ec966914201c .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

	#cmp_86148ce8-4541-471f-8864-ec966914201c .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_86148ce8-4541-471f-8864-ec966914201c .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_86148ce8-4541-471f-8864-ec966914201c .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_86148ce8-4541-471f-8864-ec966914201c .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d/component.css
 */
#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d {
	background-color: #FFFFFF;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d h1 {
	color: #333333;
	font-family: Bree Serif;
	font-size: 40px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d h2 {
	color: #333333;
	font-family: Alice;
	font-size: 22px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d h3 {
	color: #333333;
	font-family: Tajawal;
	font-size: 20px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d p {
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d .component-rich-text-with-button__content-row {
	padding: 10px 0;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d .component-rich-text-with-button__button-row {
	padding: 10px 0 20px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d .btn {
	background-color: rgb(177, 237, 245);
	color: rgb(0, 0, 0);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d ol {
	list-style: decimal;
	list-style-position: insidone for the;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d ul {
	list-style: disc;
	list-style-position: inside;
	color: rgb(95, 95, 95);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d  {
	padding: 60px 0;
}
#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d h3 {
	margin-bottom: 35px;
}
#cmp_8986bfa5-53f9-48ed-84b2-601b53f5774d p {
	margin-bottom: 35px;
}
/*
 * components/whats_inside/cmp_95393e74-f5fc-4113-b084-4291e04576f9/component.css
 */
#cmp_95393e74-f5fc-4113-b084-4291e04576f9 {
	padding: 0;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

	#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_95393e74-f5fc-4113-b084-4291e04576f9 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62/component.css
 */
#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 {
	padding: 0;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_bae44646-d88e-4a3f-89fa-edb4b062cf62 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102/component.css
 */
#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 {
	padding: 0;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_cde726f2-ea64-458b-9bbd-e9602d9bb102 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_e31c9efe-7683-4105-9a6a-bd24a223a470/component.css
 */
#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 {
	padding: 0;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

	#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_e31c9efe-7683-4105-9a6a-bd24a223a470 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f/component.css
 */
#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f {
	padding: 0;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content h2 {
	color: rgb(253, 101, 101);
	font-family: Alice;
	font-size: 24px;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f023535a-087e-4e8f-8f3f-b861eef1a27f .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_f14ff5e6-554f-45c6-a695-35d848819ff8/component.css
 */
#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 {
	padding: 0;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content h1 {
	color: rgb(144, 242, 255);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content h3 {
	color: rgb(255, 106, 106);
	font-family: Tajawal;
	font-size: 24px;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f14ff5e6-554f-45c6-a695-35d848819ff8 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5/component.css
 */
#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 {
	padding: 0;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

@media(min-width: 768px) {
	#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f5454579-e1ff-4965-83d0-8efbd0c711c5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5/component.css
 */
#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 {
	padding: 0;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 22px;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f6195fb8-1c49-4cdd-bae5-8cc29b7068d5 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_f81d5a28-1237-4547-85d6-edba1618a4cb/component.css
 */
#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb {
	padding: 0;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content h2 {
	color: rgb(51, 51, 51);
	font-family: Alice;
	font-size: 24px;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content h3 {
	color: rgb(51, 51, 51);
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


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

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

	#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

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

	#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_f81d5a28-1237-4547-85d6-edba1618a4cb .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}

/*
 * components/whats_inside/cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198/component.css
 */
#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 {
	padding: 0;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content {
	background-color: rgb(255, 255, 255);
	padding: 20px;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content h1 {
	color: rgb(177, 237, 245);
	font-family: Bree Serif;
	font-size: 45px;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content h2 {
	color: rgb(57, 196, 9);
	font-family: Alice;
	font-size: 24px;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content h3 {
	color: #3333333;
	font-family: Tajawal;
	font-size: 30px;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content p {
	color: rgb(51, 51, 51);
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content .btn {
	background-color: rgb(177, 237, 245);
	color: #FFFFFF;
	font-family: Quicksand;
	font-size: 16px;
}

#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .hero-content .btn:hover {
	background-color: rgb(139, 139, 139);
	color: #FFFFFF;
}


/*
* Add the .square-row class will make the min-height of the columns equal to their width.
*/
#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > [class^="col-"] {
	min-height: 100vw; /* full view width */
}

@media(min-width: 768px) {
	#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > .col-md-6 {
		min-height: calc(100vw / 2); /* half the view width */
	}

	#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > .col-md-4 {
		min-height: calc(100vw / 3); /* third the view width */
	}

	#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > .col-md-3 {
		min-height: calc(100vw / 4); /* fourth the view width */
	}
}

@media(min-width: 1140px) {
	#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > .col-md-6 {
		min-height: calc(1140px / 2); /* half the container width */
	}

	#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > .col-md-4 {
		min-height: calc(1140px / 3); /* third the container width */
	}

	#cmp_fbb0ae93-8ba8-40d1-86cf-3848781dd198 .square-row > .col-md-3 {
		min-height: calc(1140px / 4); /* fourth the container width */
	}
}