/* Regular font */
@font-face {
  font-family: "ProductSans";
  src: url("fonts/ProductSans-Regular.ttf") format("truetype");
  font-weight: normal; /* Regular weight */
  font-style: normal;
}

/* Bold font */
@font-face {
  font-family: "ProductSans";
  src: url("fonts/ProductSans-Bold.ttf") format("truetype");
  font-weight: bold; /* Bold weight */
  font-style: normal;
}

/* Light font */
@font-face {
  font-family: "ProductSans";
  src: url("fonts/ProductSans-Light.ttf") format("truetype");
  font-weight: 300; /* Light weight */
  font-style: normal;
}

/* Medium font */
@font-face {
  font-family: "ProductSans";
  src: url("fonts/ProductSans-Medium.ttf") format("truetype");
  font-weight: 500; /* Medium weight */
  font-style: normal;
}

/* Black font */
@font-face {
  font-family: "ProductSans";
  src: url("fonts/ProductSans-Black.ttf") format("truetype");
  font-weight: 900; /* Black weight */
  font-style: normal;
}

/* Thin font */
@font-face {
  font-family: "ProductSans";
  src: url("fonts/ProductSans-Thin.ttf") format("truetype");
  font-weight: 100; /* Thin weight */
  font-style: normal;
}

body {
  margin: 0;
  box-sizing: border-box;

  scroll-behavior: smooth;
  background-color: #ffffff;
  color: #000000;

  font-family: "ProductSans", sans-serif;
}

@media (max-width: 1068px) {
  body {
    margin: 0;
  }
}

@media (max-width: 768px) {
  body {
    margin: 0;
  }
}

@media (max-width: 500px) {
  body {
    margin: 0;
  }
}

.row_in_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.noReveal_img_1 {
  opacity: 0.8;
  transition: all 0.6s ease-in-out;
  transform: translateY(60px) scale(0.85);
}

.noReveal_heading {
  opacity: 0.85;
  transition: all 0.9s ease-in;
  transform: translateY(-10px);
}

.noReveal_text {
  opacity: 0.8;
  transition: all 0.8s ease-in-out;
  transform: translateY(10px);
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.show_img_1 {
  opacity: 1;
  transform: translateY(4px) scale(1);
}

@keyframes rotate {
  to {
    transform: rotate(-360deg);
  }
}
.nav_menu_btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  scale: 0.5;
  transition: 0.3s ease;
}

.nav_menu_btn.active span {
  background: #000000;
}

.nav_menu_btn:hover span {
  opacity: 1;
  animation: gradient 2s linear infinite;
  background: #000000;
  background-size: 600% 100%;
  animation-direction: alternate;
  transition: 0.35s ease;
}

.nav_menu_btn span {
  position: absolute;
  width: 40px;
  height: 4px;
  background: #000000;
  border-radius: 10px;
  transition: 0.35s ease;
}

@keyframes gradient {
  0% {
    background-position: 0%;
  }
  50% {
    background-position: 50%;
  }
  100% {
    background-position: 100%;
  }
}
.nav_menu_btn span:nth-child(1) {
  transform: translateY(-15px);
  width: 40px;
}

.nav_menu_btn.active span:nth-child(1) {
  width: 40px;
  transform: translateY(0) rotate(45deg);
  transition-delay: 0.12s;
}

.nav_menu_btn span:nth-child(2) {
  transform: translateY(15px);
  width: 40px;
}

.nav_menu_btn.active span:nth-child(2) {
  width: 40px;
  transform: translateY(0) rotate(135deg);
  transition-delay: 0.2s;
}

.nav_menu_btn.active span:nth-child(3) {
  transform: translateX(60px);
}

.active_nav_opts {
  display: flex;
}

.special_coffee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  padding: 12px;
}
