* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inria Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 0.938rem;
  background-color: hsl(220, 100%, 97%);
}
body ul {
  list-style: none;
}
body a {
  text-decoration: none;
}
body .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}
body .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #1c1c1c;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}
body .nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
body .nav {
  height: clamp(40px, 2vw, 60px);
}
body .nav-logo, body .nav-burger, body .nav-close {
  color: #fff;
}
body .nav-data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .nav-logo {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  font-weight: 600;
}
body .nav-logo i {
  font-weight: initial;
  font-size: 1.25rem;
}
body .nav-toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1118px) {
  body .nav-toggle {
    display: none;
  }
}
body .nav-burger, body .nav-close {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
body .nav-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  body .nav-menu {
    position: absolute;
    right: 0;
    height: 100vh;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
    background-color: #1c1c1c;
  }
  body .nav-menu::-webkit-scrollbar {
    width: 0;
  }
}
@media screen and (max-width: 1118px) {
  body .nav-list {
    background-color: hsl(220, 24%, 12%);
  }
}
@media screen and (min-width: 1118px) {
  body .nav-list {
    height: 100%;
    display: flex;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
body .nav-link {
  color: #fff;
  background-color: #1c1c1c;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
body .nav-link:hover {
  background-color: hsl(220, 24%, 15%);
}
@media screen and (min-width: 1118px) {
  body .nav-link:hover {
    background-color: transparent;
  }
}
@media screen and (max-width: 340px) {
  body .nav-link {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 1118px) {
  body .nav-link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
body .dropdown-item {
  cursor: pointer;
}
body .dropdown-item:hover .dropdown-menu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}
@media screen and (min-width: 1118px) {
  body .dropdown-item:hover .dropdown-menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }
}
body .dropdown-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}
@media screen and (min-width: 1118px) {
  body .dropdown-item {
    position: relative;
  }
}
body .dropdown-arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}
body .dropdown-link, body .dropdown-sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: #fff;
  background-color: hsl(220, 24%, 15%);
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s;
}
body .dropdown-link i, body .dropdown-sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}
body .dropdown-link:hover, body .dropdown-sublink:hover {
  background-color: hsl(220, 24%, 12%);
}
body .dropdown-add {
  margin-left: auto;
}
body .dropdown-sublink {
  background-color: hsl(220, 20%, 18%);
}
body .dropdown-menu, body .dropdown-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
@media screen and (min-width: 1118px) {
  body .dropdown-menu, body .dropdown-submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
  }
}
@media screen and (min-width: 1118px) {
  body .dropdown-submenu {
    left: 100%;
    top: 0.5rem;
  }
}
@media screen and (min-width: 1118px) {
  body .dropdown-subitem {
    position: relative;
  }
}
body .dropdown-subitem:hover > .dropdown-submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}
@media screen and (min-width: 1118px) {
  body .dropdown-subitem:hover > .dropdown-submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}
@media screen and (min-width: 1118px) {
  body .dropdown-subitem .dropdown-link {
    padding-inline: 1rem;
  }
}
body .show-menu {
  opacity: 1;
  pointer-events: initial;
}
body .show-icon .nav-burger {
  opacity: 0;
  transform: rotate(90deg);
}
body .show-icon .nav-close {
  opacity: 1;
  transform: rotate(90deg);
}
@media screen and (max-width: 340px) {
  body .container {
    margin-inline: 1rem;
  }
}
@media screen and (min-width: 1118px) {
  body .container {
    margin-inline: auto;
  }
  body .nav {
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
  }
}
body main {
  background-color: #363636;
}
body main .gallery-img-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between boxes */
  justify-content: center;
  padding: clamp(50px, 7vw, 100px) 20px 20px 20px;
}
body main .gallery-img-box {
  width: 250px;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
body main .gallery-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
body main .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
body main .lightbox.hidden {
  display: none;
}
body main .lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  -o-object-fit: contain;
     object-fit: contain;
}
body main #lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}/*# sourceMappingURL=gallery.css.map */