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

/* 1 - NAV */

/* OVERALL */

nav {
  position: fixed;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  background-color: #111;
}

/* LOGO */

.logo {
  letter-spacing: 3px;
}

.logo a {
  font-family: "Catamaran", sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

/* MENU - MOBILE */

.mobile-menu,
.desktop-menu {
  list-style: none;
}

.mobile-menu {
  position: absolute;
  right: 0;
  top: 48px;
  height: calc(100vh - 48px);
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50%;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-x: hidden;
  opacity: 0.95;
}

.mobile-menu li {
  opacity: 0;
}

.mobile-menu li a {
  opacity: 1;
}

.desktop-menu {
  display: flex;
  justify-content: space-around;
  width: 50%;
  display: none;
}

.mobile-menu li a,
.desktop-menu li a {
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

/* BURGER - MOBILE */

.hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.hamburger:focus {
  outline: none;
}

.hamburger div {
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* JS Functions - MENU */

.menu-active {
  transform: translateX(0%);
}

@keyframes mbMenuLxFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.burger-x .line1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.burger-x .line2 {
  opacity: 0;
}

.burger-x .line3 {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* NAV & MENU - DESKTOP */

@media only screen and (min-width: 768px) {
  nav {
    padding: 0;
  }

  .desktop-nav-wrapper {
    display: flex;
    width: 100vw;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
  }

  .mobile-menu {
    display: none;
  }

  .desktop-menu {
    display: flex;
    width: fit-content;
  }

  nav ul li {
    padding: 0 0 0 5vw;
  }

  .hamburger {
    display: none;
  }
}

/* 2 - MAIN */
/* MAIN - A */

/* MAIN - B */

.prod-cards {
  display: grid;
  padding: calc(10vh + 48px) 10vw 10vh;
  grid-auto-rows: minmax(150px, auto);
  grid-gap: 16px;
}

.card-desc {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #c7c7c7;
  background-blend-mode: multiply;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-desc h3 {
  font-family: "Catamaran", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.desc-1 {
  background-image: url("../img/background/led_light_module_2a.jpg");
}
.desc-2 {
  background-image: url("../img/background/led_light_strip_roll.jpg");
  background-color: #c2c2c2;
}
.desc-3 {
  background-image: url("../img/background/led_light_neon_flex_1.jpg");
}
.desc-4 {
  background-image: url("../img/background/led_light_power_transformer_2.jpg");
}
.desc-5 {
  background-image: url("../img/background/led_light_accessories.jpg");
  background-color: #c2c2c2;
}
.desc-a {
  background-image: url("../img/background/hologram_fan_display_wall.jpg");
  background-color: #bababa;
}

/* DESKTOP VIEW - MAIN */

@media only screen and (min-width: 768px) {
  .prod-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 20vh calc(60vh - 112px);
    grid-template-areas:
      "box-a"
      "box-1";
  }

  .box-1 {
    grid-area: box-1;
  }

  .box-a {
    grid-area: box-a;
  }
}

/* 3 - FOOTER */
footer {
  display: flex;
  flex-direction: column;
  height: 5em;
  width: 100%;
  background-color: #111;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
}

footer {
  font-family: "Catamaran", sans-serif;
  font-size: 14px;
  color: #fff;
}

.menu-lot li a {
  font-family: "Catamaran", sans-serif;
  font-size: 14px;
  color: #fff;
}

.menu-lot ul {
  display: flex;
}

.menu-lot ul li {
  padding: 0 15px;
  list-style: none;
}

@media only screen and (min-width: 768px) {
  footer {
    flex-direction: row;
    height: 48px;
    padding: 0 5vw;
  }

  .menu-lot {
    width: fit-content;
    float: left;
    order: 2;
  }

  .menu-lot li {
    padding: 0 0 0 5vw;
  }

  .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
  }
}
