.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-extralight-white-big {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 40px;
  color:#FFFFFF;
  padding:3px;
  margin:0px;
}


.barlow-extralight-beige {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  color:#D0B48F;
  padding:3px;
  margin:0px;
}

.barlow-extralight-white-normal {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  color:#FFFFFF;
  padding:3px;
  margin:0px;
}

.barlow-extralight-white-normal2 {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 16px;
  color:#FFFFFF;
  padding:3px;
  margin:0px;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}



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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

img.mainpic {
  max-width: 100%;
  height: auto;
}

img.gallery {
  width: 350px;
  height: auto;
}

img.features {
	margin:0px;
	padding:0px;
	vertical-align:bottom;
	width: 375px;
	height: auto;
}

header {
    background-color: #FFF;
    color: #212d65;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;  /* Ensures the menu stays on top */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
}

.menu a {
    color: #212d65;
    text-decoration: none;
    padding: 10px;
}

.menu a:visited {
    color: #212d65;
    text-decoration: none;
    padding: 10px;
}

.menu a:hover {
    color: #212d65;
    text-decoration: underline;
    padding: 10px;
}


.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

main {
    padding: 20px;
}

div.greydiv{
    background-color: #2d2d2d;
}

div.blackdiv{
    background-color: #000000;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-item {
    flex: 1 1 calc(33.333% - 40px);
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
    }
    .hamburger {
        display: block;
    }
    .menu.active {
        display: flex;
    }
    .product-item {
        flex: 1 1 calc(50% - 20px);
    }

	img.gallery {
	  width: 75px;
	  height: auto;
	}

	img.features {
		margin:0px;
		padding:0px;
		vertical-align:bottom;
		width: 80px;
		height: auto;
	}
}

@media (max-width: 500px) {
    .product-item {
        flex: 1 1 100%;
    }

	img.gallery {
	  width: 75px;
	  height: auto;
	}

	img.features {
		margin:0px;
		padding:0px;
		vertical-align:bottom;
		width: 80px;
		height: auto;
	}
}
