.custom-gear-left {
  position: relative;
  width: 100%;
  height: 584px;
  overflow: hidden;
}

.custom-gear-left img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.custom-gear-left img.active {
  opacity: 1;
  z-index: 2;
}

.no-js .custom-gear-left img {
  opacity: 1;
}

.custom-gear {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
}

.custom-gear .custom-second-button:nth-child(1) {
  text-align: center;
}

.custom-gear .button-row {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}