body p {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-style: normal;
}

body h1,
h2,
h3,
h4,
h5 {
	font-family: "DM Serif Display", serif;
	font-style: normal;
}

.navbar {
	background-color: #20287a;
	padding: 8px;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}
.navbar .logo {
	color: white;
	font-size: 24px;
	text-decoration: none;
}
.navbar .menu {
	position: relative;
	display: inline-block;
}
.navbar .menu i {
	color: #ff4d00;
	font-size: 30px;
	cursor: pointer;
	padding-left: 10px;
}
.navbar .menu i:hover {
	transform: rotate(90deg);
}
.navbar .dropdown-content {
	display: none;

	position: absolute;
	background-color: #091057;
	min-width: 300px;
	min-height: 150px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.navbar .dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 20px;
}
.navbar .dropdown-content a:hover {
	background-color: #f1f1f1;
	color: black;
}
.navbar .dropdown-content button:hover {
	background-color: #f1f1f1;
	color: black;
}
.navbar .menu:hover .dropdown-content {
	display: block;
}
.content {
	padding-top: 60px;
}

.dropdown-btn {
	padding: 12px 16px;
	text-decoration: none;
	font-size: 20px;
	color: white;
	display: block;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: none;
	font-family: "DM Serif Display", serif;
	font-style: normal;
}

.active {
	background-color: #20287a;
	color: black;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
	display: none;
	background-color: #20287a;
	padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
	float: right;
	padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
	.navbar {
		padding-top: 15px;
	}
	.navbar a {
		font-size: 18px;
	}
}

.hero-image {
	padding-top: 100px;
	padding-bottom: 100px;
	max-width: auto;
	max-height: 100px;
    height: auto;
    overflow: hidden;
}

.hero-text {
	font-size: 40px;
	text-align: center;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.header {
	background-color: #1a1a1a;
	color: white;
	text-align: center;
	padding: 20px 0;
}
.header h1 {
	margin: 0;
	font-size: 24px;
}

* {
	margin: 0;
	padding: 0;
}
.main {
	height: 80vh;
	width: 100%;
}
.wrapper,
.slide {
	position: relative;
	width: 100%;
	height: 100%;
}
.slide {
	overflow: hidden;
}
.slide::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 10;
}
.slide .image {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.slide .image-data {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	z-index: 100;
}
.image-data span.text {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}
.image-data h2 {
	font-size: 45px;
	font-weight: 600;
	color: #fff;
}
/* swiper button css */
.nav-btn {
	height: 20px;
	width: 20px;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.3);
}
.nav-btn:hover {
	background: rgba(255, 255, 255, 0.4);
}
.swiper-button-next {
	right: 20px;
}
.swiper-button-prev {
	left: 20px;
}
.nav-btn::before,
.nav-btn::after {
	font-size: 100px;
	color: #fff;
}
.swiper-pagination-bullet {
	height: 12px;
	width: 12px;
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.nav-btn {
		visibility: hidden;
	}
	.swiper-pagination-bullet {
		visibility: visible;
	}
}
.about {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	padding: 10px;
	padding-bottom: 150px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.text-section {
	max-width: 400px;
	margin-right: 20px;
	padding-right: 100px;
}
.text-section h2 {
	font-family: "DM Serif Display", serif;
	font-style: normal;
	font-size: 36px;
	color: #091057;
	text-align: center;
}
.text-section p {
	font-size: 16px;
	color: #1a1a1a;
	text-align: center;
	line-height: 1.6;
}
.text-section p a {
	color: #1a1a1a;
	text-decoration: underline;
	color: #e07a5f;
}
.text-section .more-info {
	font-size: 14px;
	color: #e07a5f;
	text-align: center;
	margin-top: 20px;
}
.image-section img{
	margin-top: 10px;
    margin-right: 10px;
	width: 100%;
	height: auto;
	background-color: #d3d3d3;
}

.title-category {
	font-family: "DM Serif Display", serif;
	font-style: Bold;
	font-size: 70px;
	color: #091057;
	text-align: center;
}
.categories {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 100px;
}
.category {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: black;
	display: inline-block;
}
.category img {
	width: 100%;
	height: auto;
	transform: scale(1.2);
	opacity: 0.7;
	transition: opacity 0.4s, transform 0.4s;
}

.category img:hover {
	transform: scale(1.03);
	opacity: 1;
}
.category a span:hover {
	opacity: 1;
}
.category a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	z-index: 100;
	font-size: 60px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}
@media (min-width: 600px) {
	.category {
		width: 50%;
	}
}

.about-page-container {
	background-color: white;
	padding-left: 100px;
	padding-top: 50px;
	position: left;
	padding-bottom: 50px;
    align-self: center;
}
.about-page-titles h1 {
	text-align: left;
	font-size: 40px;
	padding-bottom: 20px;
	color: #20287a;
}
.about-page-p p,
b {
	font-size: 21px;
	color: #333;
	text-align: justify;
    width: 100%;
	max-width: 1000px;
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	line-height: 1.6;
}
.contact {
	display: flex;
	align-items: justify;
	background-color: white;
	padding: 10px;
    margin: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.text-section-c {
	max-width: 350px;

	padding-right: 100px;
}
.text-section-c h1 {
	font-family: "DM Serif Display", serif;
	font-style: normal;
	font-size: 36px;
	color: #091057;
	text-align: left;
}
.text-section-c p {
	font-size: 21px;
	color: #1a1a1a;
	text-align: justify;
	line-height: 1.6;
}
.text-section-c p a {
	color: #1a1a1a;
	text-decoration: underline;
	color: #e07a5f;
}

.image-section-c iframe {
	margin-top: 10px;
	width: 100%;
	height: auto;
	margin-left: 350px;
	background-color: #d3d3d3;
}

.contact input[type="text"],
select,
textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
}
.contact input[type="submit"] {
	background-color: #04aa6d;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.contact input[type="submit"]:hover {
	background-color: #45a049;
}

.footer {
	background-color: #091057;
	color: white;
	text-align: center;
	padding: 20px 0;
}
.footer a {
	color: #ff4d00;
	font-size: 24px;
	margin: 0 10px;
	width: 24px;
	text-decoration: none;
}

.footer p {
	color: #ff4d00;
	font-family: "DM Serif Display", serif;
	font-style: normal;
	padding-bottom: 10px;
	font-size: 14px;
}


.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.container .title {
	font-size: 3.5rem;
	color: #444;
	margin-bottom: 3rem;
	text-transform: uppercase;
	text-align: center;
}

.container .products-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 8rem;
}

.container .products-container .product {
	text-align: center;
	padding-bottom: 3rem;
	background: #fff;
	box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.1);
	outline-offset: -1.5rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.container .products-container .product:hover {
	outline-offset: 0;
	background: #dddddd;
}

.container .products-container .product img {
	padding: 0px;
	width: 100%;
	max-height: 200px;
	overflow: hidden;
	object-fit: cover;
}

.container .products-container .product:hover img {
	transform: scale(0.9);
}

.container .products-container .product h3 {
	padding: 1rem 0;
	font-size: 21px;
	color: #444;
}

.container .products-container .product:hover h3 {
	color: #27ae60;
}

.container .products-container .product .price {
	font-size: 2rem;
	color: #444;
}

@media (max-width: 100px) {
	.container {
		width: 50%;
	}
}

.products-preview {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 50vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
}

.products-preview .preview {
	display: none;
	padding: 3rem;
	text-align: center;
	background: #fff;
	position: relative;
	margin: 2rem;
	width: 30rem;
    max-width: 60rem;
	overflow: hidden;
}

.products-preview .preview.active {
	display: inline-block;
}

.products-preview .preview img {
	margin-top: 50px;
	width: 100%;
	max-height: 200px;
	overflow: hidden;
	object-fit: cover;
}

.products-preview .preview .fa-times {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	cursor: pointer;
	color: #3d1b12;
	font-size: 4rem;
}

.products-preview .preview .fa-times:hover {
	transform: rotate(45deg);
}

.products-preview .preview h3 {
	color: #444;
	padding: 0.5rem 0;
	font-size: 5rem;
}

.products-preview .preview .stars {
	padding: 1rem 0;
	font-size: 1.7rem;
}

.products-preview .preview .stars i {
	color: #27ae60;
}

.products-preview .preview .stars span {
	color: #999;
}

.products-preview .preview p {
	line-height: 1.5;
	padding: 1rem 0;
	font-size: 21px;
	color: #777;
}

.products-preview .preview .price {
	padding: 1rem 0;
	font-size: 2.5rem;
	color: #27ae60;
}

.products-preview .preview .buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.products-preview .preview .buttons a {
	flex: 1 1 16rem;
	padding: 1rem;
	font-size: 1.8rem;
	color: #444;
	border: 0.1rem solid #444;
	text-decoration: none;
}

.products-preview .preview .buttons a.cart {
	background: #20287a;
	color: #fff;
}

.products-preview .preview .buttons a.cart:hover {
	background: #091057;
}

.products-preview .preview .buttons a.buy:hover {
	background: #20287a;
	color: #fff;
}

@media (max-width: 450px) {
	html {
		font-size: 55%;
	}
}

@media (max-width: 450px) {
	.products-preview .preview img {
		height: 20rem;
	}
}

@media (max-width: 450px) {
	html {
		font-size: 50%;
	}
}

.google-map {
	padding-bottom: 400px;
	position: relative;
}

.google-map iframe {
	height: 300px;
	width: 300px;

	left: 25px;
	position: absolute;
}
