* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Futura", sans-serif;
}

h2 {
  text-align: center;
  font-size: 1.3em;
  font-weight: 400;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -20px;
}
.navbar-container .navbar-grid {
  width: 1280px;
  display: grid;
  grid-template-columns: 20% 60% 20%;
  align-items: center;
  margin: 0px 30px;
}
.navbar-container .navbar-grid .logo-box {
  display: flex;
  justify-content: center;
}
.navbar-container .navbar-grid .logo-box img {
  width: 150px;
}
.navbar-container .navbar-grid .icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.navbar-container .navbar-grid .icons i {
  font-size: 20px;
}

.mobile-navbar {
  display: none;
}

.navitems {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.navitems ul {
  max-width: 1280px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.navitems ul li {
  font-weight: 400;
  font-size: 0.9em;
}
.navitems ul li:hover {
  border-bottom: 1px solid red;
}

.hero img {
  width: 100%;
}

.genz-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
  padding: 2em;
}
.genz-container h2 {
  text-align: center;
  font-size: 1.4em;
  font-weight: 400;
}
.genz-container p {
  text-align: center;
  margin-top: 10px;
}
.genz-container .genz-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: 50% 50%;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}
.genz-container .genz-grid img {
  width: 100%;
}
.genz-container .genz-grid .genz-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.genz-container .genz-grid .genz-item h4 {
  font-weight: 400;
  font-size: 1em;
  margin-top: 1em;
}
.genz-container .genz-grid .genz-item button {
  border: 1px solid #e8e8e1;
  background: none;
  padding: 10px 20px;
  margin-top: 1em;
}

.watches-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 40px;
  padding: 2em;
}
.watches-container .watches-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: 33% 33% 33%;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
.watches-container .watches-grid img {
  width: 100%;
}
.watches-container .watches-grid .genz-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.watches-container .watches-grid .genz-item h4 {
  font-weight: 400;
  font-size: 1em;
  margin-top: 0.7em;
}
.watches-container .watches-grid .genz-item button {
  border: 1px solid #e8e8e1;
  background: none;
  padding: 10px 20px;
  margin-top: 1em;
}

.shop-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 0px;
}
.shop-container h2 {
  font-size: 1.3em;
  font-weight: 400;
  margin: 1em 0px;
}
.shop-container .shop-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
}
.shop-container .shop-grid div {
  margin: 1em;
}
.shop-container .shop-grid div img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.shop-container .shop-grid div img:hover {
  transform: scale(1.04);
}
.shop-container .shop-grid div p {
  text-align: center;
  font-size: 0.8em;
  margin-top: 1em;
}

.mobile-banner-container {
  display: none;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
}
.banner-container .banner {
  max-width: 1280px;
}
.banner-container .banner img {
  width: 100%;
}

.banner-container-full {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
}
.banner-container-full .banner-full {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-container-full .banner-full .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  opacity: 0.5;
}
.banner-container-full .banner-full img {
  width: 100%;
}
.banner-container-full .banner-full .banner-text {
  position: absolute;
  bottom: 50px;
  left: 6%;
}
.banner-container-full .banner-full .banner-text p {
  font-size: 1.2em;
  color: white;
  font-weight: 400;
}
.banner-container-full .banner-full .banner-text h3 {
  font-size: 3em;
  color: white;
  font-weight: 400;
}
.banner-container-full .banner-full .banner-text button {
  border: 1px solid #e8e8e1;
  background: none;
  padding: 10px 20px;
  margin-top: 1em;
  color: white;
}

.top-launch-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 0px;
}
.top-launch-container h2 {
  font-size: 1.3em;
  font-weight: 400;
  margin: 1em 0px;
}
.top-launch-container .top-launch-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.top-launch-container .top-launch-grid div {
  margin: 1em;
}
.top-launch-container .top-launch-grid div img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.top-launch-container .top-launch-grid div img:hover {
  transform: scale(1.04);
}
.top-launch-container .top-launch-grid div p {
  text-align: center;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 1em;
}

.option-container {
  display: flex;
  justify-content: center;
  margin: 2em 0px;
}
.option-container .option-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 50% 50%;
}
.option-container .option-grid div {
  margin: 1em;
}
.option-container .option-grid img {
  width: 100%;
}

.muses-container {
  display: grid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2em 0px;
}
.muses-container p {
  font-size: 0.8em;
  font-weight: 400;
  text-align: center;
  padding: 1em 0px;
}
.muses-container .muses-grid {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: 20px;
  justify-content: center;
}
.muses-container .muses-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */