.custom-items-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
  }

  .custom-item-wrapper {
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .custom-item-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .custom-item-link {
    text-decoration: none;
    color: inherit;
  }

  .custom-item-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }

  .custom-item-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 10px 0;
  }

  @media (max-width: 768px) {
    .custom-items-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .custom-items-row {
      grid-template-columns: repeat(1, 1fr);
    }
  }


  /* Default transparent header */
/* Default transparent header */
/* Default transparent header */
.MAIN-NAVIGATION {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.MAIN-NAVIGATION.transparent {
  background-color: transparent;
  color: #20033A;
}

.MAIN-NAVIGATION.transparent a {
  color: black;
}

.MAIN-NAVIGATION.scrolled {
  background-color: #20033A;
  color: white;
}

.MAIN-NAVIGATION.scrolled a {
  color: white;
  transition: color 0.3s ease;
}

.MAIN-NAVIGATION .main-navigation-menu > ul > li > a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 75px;
  height: 75px;
  color: #ffffff;
  vertical-align: baseline;
}