/* CSS Document */
.carousel-container__GCP {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.carousel__GCP {
  display: flex;
  transition: transform 0.5s ease;
}

.grid__GCP {
  flex: 1 0 49%;
  background-color: #ddd;
  margin: 5px;
  text-align: center;
  padding: 20px;
}

.button-container__GCP {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.prev__GCP,
.next__GCP {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.prev__GCP {
  margin: 20px 10px 30px 0px;
}

.next__GCP {
  margin: 20px 0px 30px 10px;
}
