.solverAiLogo {
    display: block;
    width: 100%;
    height: auto;
}

.solverAiVersion {
    text-align: center;
}

.headeRow {
    min-height: 10vh !important;
    display: flex;
    width: 100%;
}

.headerColumnLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    flex: 60%;
    height: 100%;
}

.headerColumnMiddle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 1%;
    flex: 30%;
    height: 100%;
    width: 100%;
}

.headerColumnRight {
    display: flex;
    text-align: right;
    margin: auto;
    padding: 1%;
    flex: 10%;
}

.hamburger {
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--muted);
    padding: 10px;
    cursor: pointer;
}

.nav-overlay {
    height: 100%;
    width: 25%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    will-change: transform;
    border: none;
    z-index: 1;
}

.nav-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-overlay .overlay-button {
    padding: 1%;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 150%;
    transition: 0.3s;
    cursor: pointer;
}

.nav-overlay .overlay-button:hover {
    background-color: #555;
}

.nav-overlay.active {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .headerColumnLeft {
        flex: 50%;
    }
    .headerColumnMiddle {
        flex: 40%;
    }
    .nav-overlay {
        width: 50%;
    }
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  max-width: 300px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.logo-carousel.is-static {
  -webkit-mask-image: none;
  mask-image: none;
}

.logo-carousel.is-static .logo-track {
  animation: none;
  transform: none;
  width: 100%;
  justify-content: center;
}

.logo-item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 150px;
  height: auto;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@media (max-width: 1024px) {
  .logo-item img {
    width: 100px;
  }
  .logo-carousel {
    max-width: 120px;
  }
}
