html {
  font-family: sans-serif; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

img {
  display: block;
  border: 0;
  width: 100%;
  height: auto; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0; }

.site {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  /* Hide by default */ }

.cookie-banner p {
  margin: 0;
  display: inline; }

.cookie-banner a {
  color: #f1c40f;
  text-decoration: underline; }

.cookie-button {
  background-color: #f1c40f;
  color: #333;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s; }

.cookie-button:hover {
  background-color: #e1b50f; }

.nav {
  order: -1; }

/* Burger button */
.nav > .nav-btn {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  z-index: 999; }

.nav > .nav-btn:focus {
  outline: none; }

.nav > .nav-btn:hover {
  transform: scale(1.1); }

.nav > .nav-btn > span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #000;
  margin: 6px 0; }

/* Horizontal navigation for larger screens */
.nav > .nav-links {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
  align-items: center; }

.nav > .nav-links > a {
  text-decoration: none;
  color: #000;
  padding: 10px;
  display: block; }

.nav > .nav-links > a:hover {
  background-color: #f5f5f5;
  color: #555; }

/* Media Query for Small Screens */
@media (max-width: 600px) {
  .headerStyle {
    display: none; }

  .nav > .nav-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px; }

  .nav > .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    flex-direction: column; }

  .nav > .nav-links.active {
    display: flex; } }
/* Smaller screen override */
@media screen and (max-width: 77.999em) {
  /* Anything less than 1248px */
  .site {
    display: flex;
    flex-direction: column; }

  .nav {
    order: -1;
    /* Keeps the nav on top */
    width: 100%;
    /* Ensures nav takes full width */
    height: 3.75em; }

  .nav > .nav-links {
    /* Styles for nav-links when visible */ }

  .sidebar {
    height: 3em; }

  .main_container {
    order: 1;
    /* Ensures that the main content comes after nav */
    width: 100%;
    /* Ensures main content takes full width */ }

  /* Reset any specific positioning from larger screen grid layout if necessary */
  header, .sidebar, footer {
    order: 2;
    /* Adjust as needed to place other sections */ } }
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em; }

@media (max-width: 768px) {
  .sidebar {
    padding: 0.5em; } }
@media (max-width: 480px) {
  .sidebar {
    padding: 0.25em; } }
.links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5em 1em;
  /* Add some padding to the links */
  cursor: pointer;
  background-color: darkgray;
  margin: 0.40em 0;
  /* Decreased margin for large monitors */
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out; }

.links:hover {
  background-color: #333; }

.links p {
  font-size: 1em;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0; }

@media (max-width: 768px) {
  .links {
    padding: 0.75em 1em;
    /* Increase the padding on smaller screens */
    margin: 0.65em 0;
    /* Adjusted margin for smaller screens */ } }
@media (max-width: 480px) {
  .links {
    padding: 1em 1em;
    /* Increase the padding on even smaller screens */
    width: 75%;
    margin: 0.40em 0;
    /* Adjusted margin for even smaller screens */ } }
/* Larger screen styles */
@supports (grid-area: auto) {
  @media screen and (min-width: 78em) {
    /* 1248px / 16px = 78em */
    .site {
      display: grid;
      grid-template-columns: 12.50em 1fr;
      grid-template-rows: auto 3.00em 1fr auto;
      grid-template-areas: "header header" "nav nav" "sidebar main" "sidebar main" "footer footer";
      gap: 1.250em;
      justify-content: center;
      align-items: start; }

    .headerStyle {
      grid-area: header;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f0f8ff;
      /* Matching the main container's background color */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      /* Softer shadow to match the container */
      border-radius: 12px;
      padding: 2em;
      transition: box-shadow 0.3s ease, background-color 0.3s ease; }
      .headerStyle:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        background-color: #e0f0ff;
        /* Slightly darker blue on hover */ }
      .headerStyle .logo {
        flex: 0 0 auto;
        max-width: 50%;
        height: 18em;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; }
        .headerStyle .logo:hover {
          transform: scale(1.05);
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); }
          .headerStyle .logo:hover img {
            filter: brightness(110%);
            border: 2px solid #0096c7;
            /* Accent blue for hover effect */ }
        .headerStyle .logo img {
          width: 100%;
          height: auto;
          transition: filter 0.3s ease, border 0.3s ease; }
      .headerStyle .header-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        font-family: 'Open Sans', Arial, sans-serif;
        color: #004c8c;
        /* Deep blue for text to match the heading color */
        padding: 0.5em;
        text-align: right;
        margin-left: auto; }
        .headerStyle .header-text h1 {
          font-family: 'Roboto', sans-serif;
          font-size: 1.8em;
          margin: 0;
          color: #004c8c;
          /* Matching main container heading */ }
        .headerStyle .header-text p {
          font-size: 1.2em;
          color: #006db6;
          /* Accent blue for paragraph text */
          margin: 0.2em 0; } }
      @media screen and (min-width: 78em) and (max-width: 768px) {
        .headerStyle .header-text {
          align-items: center;
          text-align: center;
          font-size: 1.2em;
          margin-left: 1em; }
          .headerStyle .header-text h1 {
            font-size: 1.5em; }
          .headerStyle .header-text p {
            font-size: 1em; } }
    @media screen and (min-width: 78em) and (max-width: 768px) {
      .headerStyle {
        flex-direction: column;
        align-items: center; }
        .headerStyle .logo {
          margin-bottom: 0.5em; }
        .headerStyle .header-text {
          align-items: center; } }

  @media screen and (min-width: 78em) {
    .mainHeading {
      font-size: 2em;
      /* Adjust size as needed */
      font-weight: bold;
      line-height: 1;
      margin: 0; }

    .subHeading {
      font-size: 1em;
      /* Adjust size as needed */
      margin-top: 0;
      /* Adjust top margin to space subheading from main heading */
      font-weight: lighter; }

    .nav {
      grid-area: nav;
      display: flex;
      justify-content: flex-start;
      width: 13.50em;
      height: auto; }

    .main_container {
      grid-area: main; }

    .main_container h2 {
      font-size: 2.4em; }

    .main_container p {
      font-size: 1.250em; }

    /* This allows the amount of columns to be set to 6 with each section taking up a single equal fraction. It also sets the grid row height to interchange between 100px and 300px automatically. Grid-auto-flow attempts to fill any wholes created from spanning.*/
    .container {
      grid-area: main;
      justify-content: center;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 6.250em 16.50em;
      grid-gap: 0.625em;
      grid-auto-flow: dense;
      margin-top: 1.250em; }

    .product-item {
      width: 100%;
      height: 100%;
      position: relative; }

    .product-item .images {
      width: 100%;
      height: 100%;
      overflow: hidden; }

    /* object-fit allows the element to re-size itself. object-position sets the element to focus on the center of the image instead of the default top left*/
    .product-item .images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
      cursor: pointer;
      transition: 1s ease-in-out; }

    .product-item:hover .images img {
      overflow: hidden; }

    .product-item .title {
      opacity: 0;
      position: absolute;
      top: 50%;
      left: 40%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 4;
      transition: 1s ease-in-out;
      -webkit-backdrop-filter: blur(5px) saturate(1.8);
      backdrop-filter: blur(5px) saturate(1.8);
      max-width: 65%; }

    .product-item .title .pictureHeading {
      color: #fff;
      font-size: 0.8em;
      z-index: 5; }

    .product-item:hover .title {
      opacity: 1;
      animation: move-down 1s linear;
      padding: 1em;
      width: 100%; }

    /* grid-column allows an element to span however many  columns you designate, in this case it is 3 for all elements with the w-3 class. This is helpful for a dynamic grid*/
    .w-3 {
      grid-column: span 3; }

    .w-2 {
      grid-column: span 2; }

    .w-1 {
      grid-column: span 1; }

    .w-4 {
      grid-column: span 4; }

    .w-5 {
      grid-column: span 5; }

    .w-6 {
      grid-column: span 6; }

    /*  grid-row allows an element to span however many  rows you designate, in this case it is 3 for all elements with the h-3 class. */
    .h-3 {
      grid-row: span 3; }

    .h-1 {
      grid-row: span 1; }

    .h-2 {
      grid-row: span 2; }

    .h-4 {
      grid-row: span 4; }

    .h-5 {
      grid-row: span 5; }

    .h-6 {
      grid-row: span 6; }

    .active {
      grid-area: main;
      display: grid;
      grid-template-columns: minmax(40em, 50em) 1fr;
      grid-template-areas: "lightboxImage lightboxText" "lightboxExif lightboxText" "lightboxExif lightboxText";
      justify-content: center;
      z-index: 2000; }

    .galleryImage {
      grid-area: lightboxImage;
      width: 100%;
      object-fit: contain; }

    .galleryExif {
      grid-area: lightboxExif;
      display: flex;
      justify-content: center;
      height: 3.200em; }

    .galleryText {
      grid-area: lightboxText !important;
      white-space: break-spaces !important; }

    .colophon {
      grid-area: footer; } } }
.main_manager_container {
  grid-area: main;
  display: block;
  max-width: 75em;
  padding-top: 20px;
  margin: 0 auto; }
  .main_manager_container h1 {
    text-align: center;
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0056b3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
    transition: transform 0.3s ease-in-out; }
    .main_manager_container h1:hover {
      transform: scale(1.05); }
    @media (max-width: 768px) {
      .main_manager_container h1 {
        text-align: center;
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #0056b3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.05em;
        transition: transform 0.3s ease-in-out; }
        .main_manager_container h1:hover {
          transform: scale(1.05); } }
    @media (max-width: 480px) {
      .main_manager_container h1 {
        text-align: center;
        font-size: 1.2em;
        font-weight: bold;
        margin-bottom: 10px;
        color: #0056b3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.05em;
        transition: transform 0.3s ease-in-out; }
        .main_manager_container h1:hover {
          transform: scale(1.05); } }
  .main_manager_container .article-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.250em; }
    .main_manager_container .article-container .article {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden; }
      .main_manager_container .article-container .article .largeImage {
        display: inline-block;
        transition: transform 0.3s ease-in-out; }
        .main_manager_container .article-container .article .largeImage:hover {
          transform: scale(1.1); }
      .main_manager_container .article-container .article .imageStyle {
        border-radius: 5px 5px 0 0;
        width: 100%;
        height: 200px;
        object-fit: cover; }
      .main_manager_container .article-container .article:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); }
      .main_manager_container .article-container .article .articleHeading {
        font-family: "Roboto", Arial, sans-serif;
        font-size: clamp(1rem, 2rem, 1.5rem);
        margin-bottom: 10px;
        color: #0056b3;
        line-height: 1.0; }
      .main_manager_container .article-container .article .articleText {
        font-family: "Roboto", Arial, sans-serif;
        font-size: clamp(1rem, 1rem, 1.5rem);
        padding: 1.25em;
        color: #0056b3;
        line-height: 1.6;
        text-align: left;
        white-space: pre-wrap; }

@media (max-width: 480px) {
  .main_manager_container .article-container {
    grid-template-columns: 1fr;
    gap: 0.5em; }
    .main_manager_container .article-container .article {
      max-width: none;
      margin: 0;
      margin-top: 0.625em;
      box-shadow: none; }
    .main_manager_container .article-container .imageStyle {
      height: auto; } }
.lightbox_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  display: none; }
  .lightbox_background.active {
    background-color: rgba(0, 0, 0, 0.8);
    display: block; }

.lightbox {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 1200px;
  transition: opacity 0.5s;
  max-height: 90%;
  overflow-y: auto;
  z-index: 1001; }
  @media (max-width: 1200px) {
    .lightbox {
      max-width: 90%; } }
  @media (max-width: 900px) {
    .lightbox {
      max-width: 95%; } }
  .lightbox.active {
    display: block; }
  .lightbox .lightbox-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px; }
  .lightbox .lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    animation: fadeIn 1s; }
    .lightbox .lightbox-content .lightbox-image {
      width: calc(100% - 40px);
      height: auto;
      margin: 0 auto 20px auto;
      border-radius: 10px; }
    .lightbox .lightbox-content .lightbox-text {
      width: 100%;
      max-height: 300px;
      overflow-y: auto;
      padding: 20px;
      white-space: pre-wrap;
      background-color: #f7f7f7;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@media (max-width: 480px) {
  .lightbox {
    width: 95%;
    height: 95%;
    padding: 10px; }
    .lightbox .lightbox-title {
      font-size: 20px; }
    .lightbox .lightbox-content {
      font-size: 16px; }
      .lightbox .lightbox-content .lightbox-image {
        width: 100%;
        height: 50%;
        margin: 10px 0;
        float: none; }
      .lightbox .lightbox-content .lightbox-text {
        width: 100%;
        margin: 10px 0; } }
.colophon p {
  display: none;
  color: #2E2E2E;
  font-size: 0.8em;
  text-align: center; }

/*# sourceMappingURL=product.css.map */
