
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* ---------------------------------------------------------------------- */

.preloader {
	z-index: 1000;
	display: flex;
	position: fixed;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background-color: white;
	background-image: url(/assets/media/icons/preloder.gif);
	background-repeat: no-repeat;
	background-position: center;
	background-size: clamp(10px, 10vw, 40px);
}

/* ---------------------------------------------------------------------- */

/*
	NOTE: I define a .no-scroll toggle in CSS. By default, it’s off (the body has no no-scroll class).
		Calling 'body.classList.toggle('no-scroll');' in JS
		will dynamically add or remove the no-scroll class on the body AND apply it's content
*/
body.no-scroll {
	overflow: hidden;
	height: 100vh;
}

/* NOTE: Just remove the defult blue highlighte in the click */
* {
	-webkit-tap-highlight-color: transparent;
}

main > * {
    margin-bottom: 25px;
}

main {
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
}

/*  ---------------- Back to Top --------------------  */

.back-to-top {
	display: none;
	max-width: 1440px;
	width: 100%;
	position: fixed;
	align-items: center;
	justify-content: flex-end;
	padding-right: 20px;
	bottom: 0;
    pointer-events: none;

}

.back-to-top img {
	width: 50px;
	flex-direction: column;
	cursor: pointer;
	pointer-events: auto;
	filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.6));
}

/*  ----------------------------------------------------  */

.get-order {
    display: flex;
	color: white;
	width: 100%;
	text-align: center;

	min-height: 100px;
	max-height: fit-content;
	padding: 20px;

	font-size: clamp(16px, 2vw, 20px);
	font-weight: 600;
    
	font-family: var(--parag-font);
	background-color: var(--based-color);
}

.get-order .get-order-container {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.get-order-container .order-link {
	display: inline-block;
    color: inherit;
	padding: 5px 15px;
	margin: 10px 0 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid white;
}

.get-order-container .order-link:hover {
    background-color: #750000;
}

/* ---------------------------------------------------------------------- */
/* vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv */
.promo-container {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
	flex-direction: row;
	color: white;
	background-color: rgb(0, 99, 66);
}

.right-box {
	width: 50%;
	height: auto;
}

.left-box {
	width: 50%;
	height: auto;
	
	padding: 5% 8%;
}

.promo-img img {
	width: 100%;
	height: 100%;
	display: block;
}

.promo-content {
	display: flex;
	text-align: center;
	flex-direction: column;
	width: 100%;
	height: 100%;

	color: inherit;
	justify-content: center;

}

.promo-content .title {
	font-family: var(--parag-font);
	font-size: x-large;
	font-weight: bold;
	margin-bottom: 24px;
}

.promo-content p {
	font-family: var(--basic-font);
	font-size: large;
}

.promo-content .order-btn {
	display: flex;
	margin-top: 32px;
	justify-content: center;
}

.promo-content .order-btn a {
	color:  rgb(0, 99, 66);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: large;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid white;
    font-family: Montserrat, sans-serif;
	background-color: white;
}

.order-btn.reverse a{
	color: white;
	background-color:  rgb(0, 99, 66);
}

.promo-container.reverse {
	flex-direction: row-reverse;
	background-color: #f7f0e4;
	color: rgb(0, 99, 66);
}

/* TODO: responsive for promo-content */
@media (max-width: 800px)
{
	.promo-container {
		display: flex;
		width: 100%;
		height: fit-content;
		align-items: center;
		flex-direction: column;
		background-color: rgb(0, 99, 66);
	}

	.right-box {
		width: 100%;
		height: auto;
	}

	.left-box {
	width: 100%;
	height: auto;
	}

	.promo-container.reverse {
  		flex-direction: column;
	}

}
