.new-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.new-grid-item {
  background-color: black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
.new-grid-item.banner a {
  background-image: url('invest-background-dark.png');
  background-size: cover;
  background-position: center;
}

.new-grid-item.banner:hover a {
  <!--background-color: rgba(64, 65, 65, 0.3);-->
  border-radius: 10px;
}

.main-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
  font-family: 'Arial Narrow', Arial, sans-serif;
}

.sub-text {
  font-size: 14px;
  font-weight: normal;
  font-family: 'Arial Narrow', Arial, sans-serif;
  color: white;
}

.mini-text {
  font-size: 10px;
  font-weight: normal;
  font-family: 'Arial Narrow', Arial, sans-serif;
  color: white;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  .grid-item {
    height: auto;
  }
  
  .grid-r-item {
    height: auto;
  }