:root {
	--color-section-bg: #fff6f6;
	--color-brand-500: #e40505;
	--color-text-primary: #18181b;
	--color-text-secondary: #3f3f46;
	--color-button-hover: #cd0404;
	--color-button-active: #b40404;
	--color-button-disabled: #e4e4e7;
	--color-mobile-app-bg: #e40505cc;
	--color-text-placeholder: #71717a;
	--color-brand-200: #fec8c8;
	--color-border-tertiary: #f4f4f5;

	--font-family: "Poppins", sans-serif;
	--letter-spacing: -0.02em;
	--letter-spacing-2: 0.1em;
	--h1: 600 2.25rem/2.75rem var(--font-family);
	--h1-desktop: 600 3rem/3.75rem var(--font-family);
	--h2: 600 1.5rem/2rem var(--font-family);
	--h2-desktop: 600 2.25rem/2.75rem var(--font-family);
	--h2-large-desktop: 600 2.5rem/1.2em var(--font-family);
	--h2-meta: 500 0.875rem/1.2em var(--font-family);
	--p1: 400 1.0625rem/1.5em var(--font-family);
	--p1-desktop: 400 1.25rem/1.5em var(--font-family);
	--btn-text: 600 1.0625rem/1.2em var(--font-family);
	--btn-text-desktop: 600 1.25rem/1.2em var(--font-family);
}

/* ** General Styles ** */

footer {
	margin-top: 0 !important;
}
main {
	background-color: #ffffff;
	color: var(--color-text-secondary);
}
.section-container {
	max-width: 1656px;
	margin: 0 auto;
}
.responsive-img {
	width: 100%;
	/* max-width: 100%; */
	height: auto;
	object-fit: cover;
}
button {
	border: none;
}
a {
	text-decoration: none;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
/* ** Fonts ** */

p {
	font: var(--p1) !important;
	font-family: var(--font-family) !important;
}
.paragraph {
	font: var(--p1) !important;
	font-family: var(--font-family) !important;
}
.paragraph--bold-text {
	font-weight: 600 !important;
}
.paragraph--white-text {
	color: white;
}
.page-title {
	font: var(--h1);
	letter-spacing: var(--letter-spacing);
	color: var(--color-text-primary);
	font-family: var(--font-family) !important;
}
.page-subtitle {
	font: var(--h2) !important;
	color: var(--color-text-primary);
	font-family: var(--font-family) !important;
}
.page-subtitle--colorful-text {
	color: var(--color-brand-500);
	font-family: var(--font-family) !important;
}
.page-subtitle__meta {
	font: var(--h2-meta) !important;
	letter-spacing: var(--letter-spacing-2);
	font-family: var(--font-family) !important;
	color: var(--color-brand-500);
}

/* ** Components ** */

.price-offer-button {
	background-color: var(--color-brand-500);
	color: #fff;
	font: var(--btn-text) !important;
	padding: 0;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	height: 3.5rem;
	width: 100%;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5rem), calc(100% - 1.5rem) 100%, 0 100%);
}
.price-offer-button--lg {
	height: 4.5rem;
}
.price-offer-button:hover {
	background-color: var(--color-button-hover);
}
.price-offer-button:active {
	background-color: var(--color-button-active);
}
.price-offer-button:disabled {
	background-color: var(--color-button-disabled);
	cursor: not-allowed;
}

.carousel-custom-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	width: 108px;
	height: 59px;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--color-brand-500);
}
.carousel-custom-nav__button {
	background-color: transparent;
	padding: 0;
	stroke: white;
	border: none;
}
.carousel-custom-nav__button:hover,
.carousel-custom-nav__button:focus {
	opacity: 0.8;
	transform: scale(1.1);
	transition: all 0.2s ease-in-out;
}
.carousel-custom-nav::after {
	content: "";
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 40px;
	height: 40px;
	background: var(--color-section-bg);
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	z-index: 2;
}
.carousel-custom-nav__arrow--left {
	transform: rotate(180deg);
}

/* ** SECTIONS START */

/* ** Hero Section ** */

.hero-section {
	background-color: var(--color-section-bg);
	padding: 1.5rem 1rem;
	margin-bottom: 2rem;
	min-height: 618px;
}
.hero-section__carousel-item {
	display: flex;
	flex-direction: column;
	gap: 2.125rem;
}
.hero-section__img-group {
	position: relative;
}
.hero-section__bg-item {
	background-color: var(--color-brand-500);
	position: absolute;
	top: 0;
	left: -5px;
	right: 16px;
	width: 100%;
	height: 100%;
}
.hero-section__img-container {
	position: relative;
	z-index: 1;
	top: 10px;
	left: 10px;
}
.hero-section__content-title {
	margin-bottom: 1rem;
}
.hero-section__content-title--linebreak {
	display: none;
}
.hero-section__content-description {
	margin-bottom: 1rem;
}

/* ** Our Services */

.our-services {
	margin-bottom: 2rem;
}
.our-services__article {
	margin-bottom: 1.5rem;
}
.our-services__article--with-padding {
	padding: 0 1rem;
}
.our-services__title {
	padding: 0 1rem;
	margin-bottom: 3rem;
	position: relative;
}
.our-services__title-svg {
	position: absolute;
	bottom: -1rem;
	left: 1rem;
}
.our-services__subtitle {
	margin-bottom: 0.5rem;
}
.our-services__subtitle--centered {
	text-align: center;
}
.our-services__article--grid-layout {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.our-services__article--grid-layout-spanned-item {
	grid-column: span 1;
}
.our-services__article--content-mobile {
	display: block;
}
.our-services__article--content-desktop {
	display: none;
}
.our-services__img--positioned {
	object-position: top left;
	max-height: 680px;
}

/* ** Highlighted Advantages Subsection */
.highlighted-advantages-subsection {
	position: relative;
	margin-bottom: 1.5rem;
}
.highlighted-advantages-subsection::before {
	content: "";
	position: absolute;
	top: -7px;
	left: -7px;
	right: -7px;
	height: 375px;
	background-color: var(--color-brand-500);
	clip-path: polygon(0 0, 100% 0, 100% 2rem, 0% 100%);
}
.highlighted-advantages-subsection__content-container {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.25rem;
	margin-bottom: 1.25rem;
	background-color: var(--color-section-bg);
	position: relative;
	z-index: 5;
}
.highlighted-advantages-subsection__content-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.highlighted-advantages-subsection__content-list-item {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	background-color: white;
	padding: 1.5rem;
}
.highlighted-advantages-subsection__content-list-item-svg {
	flex-shrink: 0;
}

/* ** Videos Subsection ** */

.videos-subsection {
	margin-bottom: 1.5rem;
}
.videos-subsection__carousel-item {
	height: 406px;
}
.videos-subsection__img-container {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 0;
}
.videos-subsection__img-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	opacity: 0.4;
	pointer-events: none;
}
.videos-subsection__carousel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.videos-subsection__content {
	position: absolute;
	left: 1.5rem;
	top: 12rem;
	pointer-events: none;
}
.videos-subsection__content-title {
	font: var(--h2);
	color: white;
	margin-bottom: 1.875rem;
}
.videos-subsection__content-svg {
	width: 4rem;
	height: 4rem;
}
.videos-subsection__modal-close-btn--bg-white {
	background-color: white !important;
	top: 0 !important;
	right: 0 !important;
	border-radius: 100%;
}

/* ** Mobile App Section ** */

.mobile-app-section {
	margin-bottom: 2rem;
	padding: 2rem;
	background: #ff1c1c;
	background: linear-gradient(135deg, rgba(255, 28, 28, 1) 0%, rgba(60, 2, 2, 1) 100%);
	--mas-title: 700 2rem/1.1em var(--font-family);
	--mas-text: 400 0.75rem/1.2em var(--font-family);
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mobile-app-section__container {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}
.mobile-app-section__title {
	font: var(--mas-title) !important;
	text-align: center;
}
.mobile-app-section__mobile-img {
	display: block;
	max-width: 450px;
	margin: 0 auto;
}
.mobile-app-section__desktop-img {
	display: none;
}
.mobile-app-section__list {
	display: flex;
	justify-content: space-between;
	gap: 0.6rem;
}
.mobile-app-section__list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}
.mobile-app-section__list-item-text {
	font: var(--mas-text) !important;
	color: white;
}
.mobile-app-section__list-item-svg {
	flex-shrink: 0;
}
.mobile-app-section__btn-container {
	display: flex;
	gap: 0.6rem;
}
.mobile-app-section__download-btn {
	height: 2.25rem;
	width: 100%;
	background-color: black;
	border-radius: 0.3rem;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.375rem;
	font: var(--mas-text) !important;
}
.mobile-app-section__download-btn-svg {
	flex-shrink: 0;
}
.mobile-app-section__download-btn:hover,
.mobile-app-section__download-btn:active {
	color: white;
}
/* ** Why Meal Box */
.why-meal-box-section {
	padding: 0 1rem;
	position: relative;
}
.why-meal-box-section__title--colorful {
	background: linear-gradient(91deg, #e40505 39.18%, #7e0303 93.1%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.why-meal-box-section__item {
	border-radius: 8px;
	border: 1px solid var(--semantic-neutral-300, #d4d4d8);
	background: #fff;
	padding: 0.75rem;
	display: flex;
	justify-content: center;
	gap: 12px;
}
.why-meal-box-section__item-img-container {
	flex-shrink: 0;
	width: 133px;
	height: 186px;
	border-radius: 0.5rem;
	overflow: hidden;
}
.why-meal-box-section__item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.why-meal-box-section__item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.why-meal-box-section__item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 19px;
}
.why-meal-box-section__item-title {
	color: var(--semantic-neutral-700, #3f3f46);
	font-family: var(--font-family) !important;
	font-size: 14px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.28px;
}
.why-meal-box-section__item-btn-number {
	display: flex;
	width: 33px;
	height: 33px;
	padding: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	border: 1px solid var(--semantic-neutral-200, #e4e4e7);
	background: var(--semantic-neutral-100, #f4f4f5);
	color: var(--semantic-neutral-500, #71717a);
	font-family: var(--font-family) !important;
	font-size: 12px;
	font-weight: 700;
	line-height: normal;
	flex-shrink: 0;
}
.why-meal-box-section__item-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.why-meal-box-section__item-description {
	color: var(--semantic-neutral-700, #3f3f46);
	font-family: var(--font-family) !important;
	font-size: 10px !important;
	font-weight: 400 !important;
	line-height: normal !important;
	letter-spacing: -0.2px;
}
.why-meal-box-section__item-btn {
	height: 2rem;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 20px !important;
	clip-path: none;
	border-radius: 8px;
}
.why-meal-box-section__item-nav-btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
}
.why-meal-box-section__item-nav-btn {
	display: flex;
	width: 38px;
	height: 38px;
	padding: 12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	background: var(--buttons-link02-fg-button-link02-click, #18181b);
}
.why-meal-box-section__item-nav-btn--tablet-prev {
	display: none;
}
.why-meal-box-section__item-nav-btn--tablet-next {
	display: none;
}
.why-meal-box-section__item-nav-svg {
	flex-shrink: 0;
}
.why-meal-box-section__item--desktop-container {
	display: none;
}
.why-meal-box-section__item-header--desktop {
	display: none;
}
/* Our Menus */
.our-menus {
	background-color: #242424;
	padding: 2.5rem 0;
	position: relative;
	padding: 2rem 1rem;
}
.our-menus__title {
	font-family: var(--font-family) !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: normal !important;
}
.our-menus__description {
	font-family: var(--font-family) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	line-height: normal !important;
	letter-spacing: -0.24px;
}
.our-menus__item {
	display: flex;
	flex-direction: column;
	min-height: 468px;
}
.our-menus__item-top {
	padding: 1rem;
	display: grid;
	gap: 0.5rem;
	border-radius: 8px 8px 0px 0px;
	color: white;
}
.our-menus__item-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.our-menus__item-svg-container {
	border-radius: 3.817px;
	background: rgba(255, 255, 255, 0.05);
	padding: 0.5rem;
	flex-shrink: 0;
}
.our-menus__item-title {
	color: var(--semantic-neutral-50, #fafafa);
	font-family: var(--font-family) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: normal !important;
	letter-spacing: -0.28px;
	margin-bottom: 2.8px;
}
.our-menus__item-desc {
	color: var(--semantic-neutral-200, #e4e4e7);
	font-family: var(--font-family) !important;
	font-size: 8px !important;
	font-style: italic !important;
	font-weight: 300 !important;
	line-height: normal !important;
	letter-spacing: -0.16px;
}
.our-menus__item-img-container {
	border-radius: 8px;
	overflow: hidden;
	height: 172px;
}
.our-menus__item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.our-menus__item-bottom {
	flex: 1;
	padding: 1rem;
	display: grid;
	gap: 1rem;
	background-color: white;
	border-radius: 0px 0px 8px 8px;
}
.our-menus__menu-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.our-menus__menu-item {
	display: flex;
	gap: 0.75rem;
}
.our-menus__menu-item-btn {
	display: flex;
	width: 30.771px;
	padding: 6.993px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 2.797px;
	background: var(--semantic-neutral-100, #f4f4f5);
	color: var(--semantic-neutral-400, #a1a1aa);
	font-family: var(--font-family) !important;
	font-size: 8px !important;
	font-weight: 300 !important;
	line-height: normal !important;
	letter-spacing: -0.16px;
	flex-shrink: 0;
}
.our-menus__menu-item-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: space-between;
	flex: 1;
	border-bottom: 1px solid var(--semantic-neutral-100, #f4f4f5);
}
.our-menus__menu-item-p {
	color: var(--semantic-neutral-700, #3f3f46);
	font-family: var(--font-family) !important;
	font-size: 8px !important;
	font-weight: 500 !important;
	line-height: normal !important;
	letter-spacing: -0.16px;
}
.our-menus__menu-item-badge {
	display: flex;
	width: 34px;
	padding: 4px 10px;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	background: var(--semantic-warning-100, #fef3c7);
	flex-shrink: 0;
	color: var(--semantic-warning-700, #b45309);
	font-family: var(--font-family) !important;
	font-size: 6px !important;
	font-weight: 500 !important;
	line-height: normal !important;
	letter-spacing: -0.12px;
}
.our-menus__item-btn {
	display: flex;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	height: 32px;
	background: var(--semantic-neutral-900, #18181b);
	color: var(--buttons-primary-fg-button-primary, #fff);
	font-family: var(--font-family) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 20px !important;
	clip-path: none;
}
.our-menus__item-btn:hover {
	background: var(--semantic-neutral-900, #18181b);
}

/* ** Customer Review Section ** */

.customer-review {
	margin-bottom: 2rem;
}
.customer-review__title {
	margin-bottom: 1.5rem;
}
.customer-review__title--centered {
	text-align: center;
}
.customer-review__profile-icon-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.customer-review__content-container {
	text-align: center;
}
.customer-review__content-first-text {
	font-weight: 600 !important;
	font-size: 1.25rem !important;
	line-height: 1.2em !important;
}
.customer-review__content-second-text {
	font-weight: 400 !important;
	font-size: 1.25rem !important;
	line-height: 1.8rem !important;
}
.customer-review__carousel-container-wrapper {
	position: relative;
}
.customer-review__carousel-container {
	background-color: var(--color-section-bg);
	padding: 1rem;
	padding-bottom: 2.875rem;
	position: relative;
	z-index: 3;
}
.customer-review__carousel-item {
	background-color: white;
	padding: 2rem;
	min-height: 566px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.customer-review__carousel-container .owl-dots {
	bottom: -42.8px;
}
.customer-review__carousel-container .owl-dot span {
	background-color: var(--color-brand-200);
}
.customer-review__carousel-container .owl-dot.active span {
	background-color: var(--color-brand-500);
}
.customer-review__comment {
	font-size: 1.25rem !important;
	line-height: 1.875rem !important;
	color: black;
	display: -webkit-box;
	-webkit-line-clamp: 14;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.customer-review__commenter-container {
	margin-top: auto !important;
}
.customer-review__commenter-name {
	font-weight: 600 !important;
	font-size: 1.25rem !important;
	line-height: 1.2em !important;
	margin-bottom: 0.25rem;
}
.customer-review__commenter-title {
	color: var(--color-text-placeholder);
}

/* ** References Section **  */

.references-section {
	margin-bottom: 2rem;
}
.references-section__title {
	margin-bottom: 1rem;
	padding: 0 1rem;
}

/* ** Our Certifications Section ** */

.our-certifications {
	margin-bottom: 2rem;
}
.our-certifications__title {
	margin-bottom: 1rem;
	padding: 0 1rem;
}
.our-certifications__description {
	margin-bottom: 1rem;
	padding: 0 1rem;
}
.our-certifications-carousel-container-wrapper {
	position: relative;
}
.our-certifications-carousel-container {
	background-color: var(--color-section-bg);
	padding: 1rem;
	padding-bottom: 2.875rem;
	position: relative;
	z-index: 3;
}
.our-certifications-carousel-container .owl-dots {
	bottom: -42.8px;
}
.our-certifications-carousel-container .owl-dot span {
	background-color: var(--color-brand-200);
}
.our-certifications-carousel-container .owl-dot.active span {
	background-color: var(--color-brand-500);
}
.our-certification__carousel-item {
	background-color: white;
	padding: 2rem 1.5rem;
	min-height: 629px;
}
.our-certifications__carousel-img-container {
	border: 1px solid var(--color-border-tertiary);
	margin-bottom: 1.5rem;
}
.our-certifications__carousel-item-title {
	font-size: 1.5rem !important;
	line-height: 2.25rem !important;
	font-weight: 500 !important;
	color: black;
	margin-bottom: 1.5rem;
}
.our-certifications__carousel-item-subtext-container {
	display: flex;
	align-items: center;
}
.our-certifications__carousel-item-subtext {
	font-size: 1.125rem !important;
	line-height: 1.875rem !important;
	font-weight: 500 !important;
	color: var(--color-brand-500);
}

/* ** Our Used Brands Section ** */

.our-used-brands-section {
	margin-bottom: 2rem;
}
.our-used-brands-section__title {
	margin-bottom: 1rem;
	padding: 0 1rem;
}

/* ** Contact Us Section ** */

.contact-us-section {
	padding: 1rem 1rem 2.75rem;
	background-color: var(--color-section-bg);
}
.contact-us-section__container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.contact-us-section__content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.contact-us-section__content-contacts-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.contact-us-section__content-contacts-list-item {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}
.contact-us-section__content-contacts-list-item-text {
	font-weight: 500 !important;
	font-size: 1.25rem !important;
	line-height: 1.875rem !important;
	color: var(--color-text-primary) !important;
	margin: 0;
}

/* ** Contact us form ** */

.contact-us-section__form-container {
	position: relative;
}
.contact-us-section__shaped-bg {
	position: absolute;
	bottom: -7px;
	right: -7px;
	left: 37%;
	top: 60%;
	background-color: var(--color-brand-500);
	clip-path: polygon(0 75%, 100% 0, 100% 100%, 0 100%);
}
.contact-us-section__form-content {
	padding: 2.5rem 1.5rem;
	background-color: white;
	position: relative;
	z-index: 5;
}

/* ** Quote Request Form */

.quote-request-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.quote-request-form--bottom-sheet {
	gap: 0.5rem;
	flex-grow: 1;
	margin-bottom: 1rem;
}
.quote-request-form--bottom-sheet .price-offer-button {
	margin-top: auto;
	flex-grow: 0;
}
.quote-request-form .form-check-input:checked {
	background-color: var(--color-brand-500);
}
.quote-request-form__label {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-placeholder, #71717a);
}
.quote-request-form .form-floating > .form-select {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.quote-request-form--underlined-a {
	text-decoration: underline;
}
.quote-request-form--underlined-a:hover,
.quote-request-form--underlined-a:active {
	color: var(--color-brand-500);
}
.quote-request-form__checkbox-label {
	font-size: 0.6rem;
	font-weight: 400;
}

/* ** DESKTOP SCREEN */

@media (min-width: 992px) {
	.page-title {
		font: var(--h1-desktop) !important;
	}
	.page-subtitle {
		font: var(--h2-desktop) !important;
		letter-spacing: var(--letter-spacing);
	}
	p {
		font: var(--p1-desktop) !important;
	}
	.paragraph {
		font: var(--p1-desktop) !important;
	}

	/* ** Components ** */

	.price-offer-button {
		font: var(--btn-text-desktop) !important;
		height: 4.5rem;
	}
	.carousel-custom-nav {
		width: 135px;
		height: 85px;
	}
	.carousel-custom-nav--translated {
		transform: translate(1rem, 100%);
	}
	.carousel-custom-nav--translated.carousel-custom-nav::after {
		background: white;
	}
	/* * Hero Section * */

	.hero-section {
		padding: 4rem 4rem 0;
		margin-bottom: 4rem;
		min-height: 670px;
	}
	.hero-section__carousel-item {
		flex-direction: row;
		padding-bottom: 10px;
	}
	.hero-section__content {
		flex: 1 1 0;
		padding-top: 5rem;
	}
	.hero-section__img-group {
		order: 1;
		flex: 1 1 0;
	}
	.hero-section__content-title {
		margin-bottom: 1.5rem;
	}
	.hero-section__content-title--linebreak {
		display: inline;
	}
	.hero-section__content-description {
		margin-bottom: 2rem;
	}
	.price-offer-button--half-with {
		width: calc(50% + 1.5rem);
	}

	/* * Our Services * */

	.our-services {
		margin-bottom: 4rem;
	}
	.our-services__subtitle {
		margin-bottom: 2rem;
	}
	.our-services__subtitle--text-start {
		text-align: start;
	}
	.our-services__article {
		margin-bottom: 3rem;
	}
	.our-services__article--with-padding {
		padding: 0 4rem;
	}
	.our-services__title {
		margin-bottom: 5rem;
		text-align: center;
	}
	.our-services__title-svg {
		left: 50%;
		transform: translateX(-210%);
	}
	.our-services__article--grid-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 5rem;
		row-gap: 2.5rem;
	}
	.our-services__article--flex {
		display: flex;
		flex-direction: column;
	}
	.our-services__article--flex-around {
		justify-content: space-around;
	}
	.our-services__article--flex-between {
		justify-content: space-between;
	}
	.our-services__article--content-mobile {
		display: none;
	}
	.our-services__article--content-desktop {
		display: block;
	}
	.our-services__article--grid-layout-item-3 {
		grid-column-start: 2;
		grid-row-start: 2;
	}
	.videos-subsection {
		margin-bottom: 3rem;
	}
	.our-services__article--grid-layout-spanned-item {
		grid-column: span 2;
	}
	.our-services__article--grid-layout-office-restaurant-item-change {
		grid-column-start: 2;
		grid-row-start: 4;
	}

	/* ** Mobile App Sections */

	.mobile-app-section {
		margin-bottom: 4rem;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		padding: 0 0 0 4rem;
		height: 719px;
	}
	.mobile-app-section__container {
		gap: 2rem;
		max-width: 611px;
		flex-shrink: 0;
	}
	.mobile-app-section__title {
		font-size: 4rem !important;
		text-align: start;
	}
	.mobile-app-section__list-item-text {
		font-size: 1.5rem !important;
	}
	.mobile-app-section__mobile-img {
		display: none;
		height: 100%;
	}
	.mobile-app-section__desktop-img-container {
		/* display: flex; */
		overflow: hidden;
		height: 100%;
	}
	.mobile-app-section__desktop-img {
		display: block;
		width: 100%;
		max-width: 1200px;
		height: 100%;
		object-fit: cover;
		object-position: -80px center;
	}
	.mobile-app-section__list {
		flex-direction: column;
		gap: 1.5rem;
	}
	.mobile-app-section__list-item {
		flex-direction: row;
		gap: 1rem;
		text-align: left;
	}
	.mobile-app-section__list-item-svg {
		width: 56px;
		height: 56px;
	}
	.mobile-app-section__download-btn-svg {
		width: 28px;
		height: 28px;
	}
	.mobile-app-section__btn-container {
		gap: 1rem;
	}
	.mobile-app-section__download-btn {
		height: 3.75rem;
		font-size: 20px !important;
		gap: 0.625rem;
		border-radius: 0.5rem;
	}

	/* Why Meal Box */
	.why-meal-box-section__item {
		flex-direction: column;
		gap: 1.5rem;
		padding: 1.25rem;
	}
	.why-meal-box-section__item-img-container {
		display: none;
	}
	.why-meal-box-section__item-img-container--desktop {
		display: block;
		width: 100%;
		height: 100%;
		/* width: 228px;
    height: 235px; */
	}
	.why-meal-box-section__item-content {
		display: none;
	}
	.why-meal-box-section__item-title {
		color: var(--semantic-neutral-700, #3f3f46);
		font-size: 28px !important;
		font-weight: 700 !important;
		letter-spacing: -0.56px !important;
	}
	.why-meal-box-section__item-description {
		font-size: 16px !important;
		letter-spacing: -0.32px;
	}
	.why-meal-box-section__item-btn-number {
		width: 70px;
		height: 70px;
		padding: 19.444px;
		border-radius: 12px;
		font-size: 23.333px;
	}
	.why-meal-box-section__item--desktop-container {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}
	.why-meal-box-section__item--desktop-content {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 1.5rem;
	}
	.why-meal-box-section__item-btn {
		height: 2.5rem;
		font-size: 15px !important;
		line-height: 1.5em !important;
	}
	.why-meal-box-section__item-header--desktop {
		display: flex;
	}
	@media screen and (min-width: 1280px) {
		.why-meal-box-section .owl-carousel .owl-item.active,
		.our-menus .owl-carousel .owl-item.active {
			transition: transform 0.3s, opacity 0.3s;
			opacity: 0.4;
			transform: scale(0.8);
			/* z-index: 1; */
		}
		.why-meal-box-section .owl-carousel .owl-item.active.center,
		.our-menus .owl-carousel .owl-item.active.center {
			opacity: 1;
			transform: scale(1);
			/* z-index: 2; */
		}
		.why-meal-box-section__item-nav-btn-container {
			display: none;
		}
		.why-meal-box-section__item-nav-btn--tablet-prev {
			display: flex;
			position: absolute;
			top: 50%;
			left: 4rem;
			z-index: 5;
			width: 70px;
			height: 70px;
			border-radius: 12px;
		}
		.why-meal-box-section__item-nav-btn--tablet-next {
			display: flex;
			position: absolute;
			top: 50%;
			right: 4rem;
			z-index: 5;
			width: 70px;
			height: 70px;
			border-radius: 12px;
		}
	}
	/* Our Menus */
	.our-menus {
		padding: 2.5rem 4rem;
	}
	.our-menus__title {
		font-size: 42px !important;
	}
	.our-menus__description {
		font-size: 16px !important;
		margin-bottom: 2rem;
	}
	.our-menus__item {
		min-height: 564px;
	}
	.our-menus__item-title {
		font-size: 20px !important;
	}
	.our-menus__item-desc {
		font-size: 14px !important;
	}
	.our-menus__item-svg-container {
		padding: 0.75rem;
	}
	.our-menus__item-img-container {
		border-radius: 8px;
		height: 218px;
	}
	.our-menus__menu-item-btn {
		font-size: 13px !important;
	}
	.our-menus__menu-item-p {
		font-size: 13px !important;
	}
	.our-menus__menu-item-badge {
		font-size: 8px !important;
	}
	.our-menus__item-btn {
		font-size: 15px !important;
		height: 40px;
	}

	/* ** Customer Review Section ** */

	.customer-review {
		margin-bottom: 4rem;
		padding: 0 4rem;
	}
	.customer-review__carousel-container-wrapper::before {
		content: "";
		position: absolute;
		bottom: -1rem;
		right: -1rem;
		left: 5%;
		top: 60%;
		background-color: var(--color-brand-500);
		clip-path: polygon(0 75%, 100% 0, 100% 100%, 0 100%);
	}
	.customer-review__carousel-container-wrapper::after {
		content: "";
		position: absolute;
		width: 70px;
		height: 45px;
		left: 167px;
		top: 0;
		transform: translateY(-100%);
		background-color: var(--color-section-bg);
		clip-path: polygon(0 0, 100% 100%, 0 100%);
	}
	.customer-review__title--centered {
		text-align: start;
	}
	.customer-review__profile-icon-container {
		flex-direction: row;
		justify-content: start;
		align-items: center;
		gap: 1.5rem;
		margin-bottom: 4rem;
	}
	.customer-review__carousel-item {
		min-height: 511px;
	}

	/* ** References Section **  */

	.references-section {
		margin-bottom: 4rem;
		padding: 0 4rem;
	}
	.references-section__title {
		margin-bottom: 2.5rem;
		padding: 0;
	}

	/* ** Our Certifications Section ** */

	.our-certifications {
		margin-bottom: 4rem;
		padding: 0 4rem;
	}
	.our-certifications__title {
		margin-bottom: 2.5rem;
		padding: 0;
	}
	.our-certifications__description {
		margin-bottom: 2.5rem;
		padding: 0;
	}
	.our-certifications-carousel-container-wrapper::before {
		content: "";
		position: absolute;
		bottom: -1rem;
		right: -1rem;
		left: 5%;
		top: 60%;
		background-color: var(--color-brand-500);
		clip-path: polygon(0 75%, 100% 0, 100% 100%, 0 100%);
	}

	/* ** Our Used Brands Section ** */

	.our-used-brands-section {
		margin-bottom: 4rem;
		padding: 0 4rem;
	}
	.our-used-brands-section__title {
		margin-bottom: 2.5rem;
		padding: 0;
	}

	/* ** Contact Us Section ** */

	.contact-us-section {
		padding: 4rem 4rem 6.25rem;
	}
	.contact-us-section__container {
		flex-direction: row;
		gap: 4rem;
	}
	.contact-us-section__container--flex-item-grow {
		flex: 1 1 auto;
	}
	.contact-us-section__content-contacts-list {
		margin-top: 3rem;
		gap: 2rem;
	}
	/* Quote Request Form */
	.quote-request-form__checkbox-label {
		font-size: 0.875rem;
	}
}

/* ** LARGE DESKTOP SCREEN */

@media (min-width: 1536px) {
	/* ** Fonts ** */

	.page-subtitle {
		font: var(--h2-large-desktop) !important;
	}
	.hero-section__content {
		padding-top: 5rem;
	}

	/* ** Components ** */

	.carousel-custom-nav {
		width: 147px;
		height: 84px;
	}

	/* ** Hero Section ** */

	.hero-section {
		margin-bottom: 5rem;
		padding: 4rem 8rem 0;
		min-height: 770px;
	}

	/* ** Our Services ** */

	.our-services {
		margin-bottom: 5rem;
	}
	.our-services__article {
		margin-bottom: 4rem;
	}
	.our-services__article--with-padding {
		padding: 0 8rem;
	}

	/* ** Mobile App Section ** */

	.mobile-app-section {
		margin-bottom: 5rem;
	}
	.mobile-app-section__desktop-img {
		object-position: center center;
	}

	/* ** Customer Review Section ** */

	.customer-review {
		margin-bottom: 5rem;
		padding: 0 8rem;
	}
	/* ** References Section **  */
	.references-section {
		margin-bottom: 5rem;
		padding: 0 8rem;
	}
	/* ** Our Certifications Section ** */
	.our-certifications {
		margin-bottom: 5rem;
		padding: 0 8rem;
	}

	/* ** Our Used Brands Section ** */

	.our-used-brands-section {
		margin-bottom: 5rem;
		padding: 0 8rem;
	}

	/* ** Contact Us Section ** */

	.contact-us-section {
		padding: 6rem 8rem;
	}
}

.home_customer_review_star_icon {
	width: 26px !important;
	height: 27px !important;
	display: inline-block !important;
}

.home_customer_review_customers_icon {
	display: inline-block;
}

.home_contact_us_phone_icon {
	width: 32px;
	height: 33px;
	display: inline-block;
}

.home_contact_us_email_icon {
	width: 32px;
	height: 33px;
	display: inline-block;
}

.home_highlighted_advantages_icon {
	width: 48px;
	height: 48px;
	display: inline-block;
}

.home_mobile_app_google_play_icon {
	width: 18px;
	height: 18px;
	display: inline-block;
}

.home_mobile_app_apple_store_icon {
	width: 18px;
	height: 18px;
	display: inline-block;
}

.home_mobile_app_section_spoon_icon {
	width: 30px;
	height: 30px;
	display: inline-block;
}

.home_mobile_app_section_star_icon {
	width: 30px;
	height: 30px;
	display: inline-block;
}

.home_mobile_app_section_arrows_icon {
	width: 29px;
	height: 30px;
	display: inline-block;
}

.home_our_certifications_right_icon {
	width: 24px;
	height: 25px;
	display: inline-block;
}

.svg-width-unset {
	width: unset !important;
}
