/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

<link href="css/custom.css" rel="stylesheet">

*/

html,
body {
	/* overflow-y: hidden;  */
	overflow-x: hidden;
	width: 100%;
	/* scroll-snap-type: y; */
	/* scroll-behavior: smooth; */
}

@media (max-width: 800px) {
	html,
	body {
		overflow-x: hidden;
	}
}

#terms_modal_p {
	font-family: Roboto;
}

.hero-btns-cont {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.content-wrapper {
	display: flex;
	flex-direction: column;
}

@media (width < 750px) {
	.hero-btns-cont {
		flex-direction: column;
		gap: 10px;
		margin-top: 50px;
	}

	.content-wrapper > .features_container {
		order: 2; /* Move section to second position */
	}

	.content-wrapper > .app_img_container {
		order: 1; /* Move call-to-action to first position */
	}

	.content-wrapper > .demo_container {
		order: 4;
	}

	.content-wrapper > .app_btn_container {
		order: 3;
	}

	.content-wrapper > .review_container {
		order: 5;
	}
}

.icon {
	width: 15px;
}

.carousel img {
	max-height: 850px; /* Limit the height to 700px */
	object-fit: contain; /* Ensure the image fits within the container */
}
