.buttons {
  .buttons {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
  }
}

.tab-btn.buttons button {
  color: #635147;
  border: none;
  width: 25%;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 30px !important;
  cursor: pointer;
  background-color: transparent;
}

.tab-btn.buttons button.active {
  background-color: #635147;
  color: white;
  border: none;
}

.tab-btn.buttons button:not(.active) {
  background-color: transparent;
  border: 1px solid #635147;
  color: #635147;
}



/* fout cards information */
.grid {
  margin-top: -150px;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-left: -230px;
  display: flex;
  display: grid;
  grid-template-columns: repeat(2, 250px);
  grid-gap: 265px;
}



.card {
  border-radius: 10px;
  cursor: pointer;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-overlay {
  position: absolute;
  bottom: 25px;
  width: 90%;
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-overlay span {
  margin-left: 20px;
  font-size: 30px;
  font-weight: 100 !important;
}


.card-arrow {
  margin-top: 10px;
  width: 33px;
  height: 33px;
  background: rgba(255, 255, 255, 0.8);
  color: #635147;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

/* journey table  */
.programmes-section {
  width: 100%;
}







@media (max-width: 768px) {


  .btn2 {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
/* responsiveness */
@media (max-width: 768px) {
  /* repsonsive 3 buttons */

  /* 4 cards */
  .grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: -30px;
    grid-template-columns: none;
    grid-gap: 10px;
  }

  .card {
    width: 100% !important;
    height: auto;
  }

  .tab-btn.buttons button {
    text-align: center !important;
    width: 80%;
    margin: 10px 0;
  }

}
