/* Basic Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
}


.logo {
	width: 150px;
}

#map { 
      height: 500px; 
      width: 100%;
    }


.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}


#spacing {
	padding: 20px;

}

.container {
	width: 80%;
	margin: 0 auto;
}


.navbar.navbar-expand-lg.navbar-light.bg-light {
	padding: 18px;
}


header {
	background: #333;
	color: #fff;
	padding: 20px 0;
	text-align: center;
}

header h1 {
	font-size: 2.5rem;
}

header p {
	font-size: 1rem;
}

.slider-container {
	position: relative;
	overflow: hidden;
	margin: 20px 0;
}

.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slider-item {
	flex: 1 0 100%;
	text-align: center;
	padding: 20px;
}

.slider-item img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.slider-item h2 {
	font-size: 1.5rem;
	margin-top: 10px;
}

.slider-item p {
	font-size: 1rem;
}

.products-list {
	background-color: #fff;
	padding: 40px 0;
	text-align: center;
}

.products-list h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.product {
	display: inline-block;
	width: 30%;
	margin: 0 15px;
	padding: 10px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	text-align: center;
}

.product2 {
	display: inline-block;
	width: 30%;
	margin: 0 15px;
	padding: 10px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	text-align: center;
}

.product img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.product2 img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

footer {
	background: #333;
	color: #fff;
	text-align: center;
	padding: 10px 0;
}

footer p {
	font-size: 1rem;
}


.carousel-item {
	display: flex;
	justify-content: space-around;
}

.carousel-item img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.carousel-item .product {
	flex: 0 0 32%;
	/* Show 3 items per slide */
	text-align: center;
}

@media (max-width: 768px) {
	.carousel-item .product {
		flex: 0 0 48%;
		/* Show 2 items per slide on small screens */
	}
}

@media (max-width: 576px) {
	.carousel-item .product {
		flex: 0 0 100%;
		/* Show 1 item per slide on extra small screens */
	}
}