.battery {
  background: #ffffff;
  padding: 30px;
}

.car-box {
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 3;
  position: relative;
  transition: 0.3s ease-in-out;
}

.car-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.car-box:hover::before {
  height: 100% !important;
}

.car-box:hover {
  transform: translateY(-30px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.car-box:hover img {
  transform: scale(1.1);
  margin-top: 30px;
}

.car-type {
  background: var(--primary-dark);
  width: 80px;
  height: 77px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-bottom: 20px;
  position: absolute;
  top: -30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #00000030;
  transition: 0.2s ease-in-out;
}

.car-box h2 {
  padding-top: 40px;
  z-index: 9 !important;
}

.car-box p {
  z-index: 9 !important;
}

.car-box img {
  width: 90%;
  z-index: 9 !important;
  transition: 0.3s ease-in-out;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.menu-item:hover {
  color: white;
}

.menu-item img {
  width: 30px;
  margin-right: 1rem;
  border-radius: 50%;
}

.menu-item-text {
  font-size: 1rem;
  font-weight: 500;
}
