/* Banner styles */


.banner.trips {background-image: url(../img/tours_trips/banner.jpg);}



/* Tours styles */
.tours {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
}

.tours h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  color: #1b2a2f;
}
.tours-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  max-width: max-content;
}
.tour {
  
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  max-width: 375px;
  cursor: pointer;
}

.tour img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour h3 {
  font-size: 24px;
  margin: 20px;
  color: #1b2a2f;
}

.tour p {
  margin: 20px;
  color: #666;
}

.tours_description {
  
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}


.tour span {
  display: block;
  background-color: #c6deea;
  color:#1b2a2f ;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin: 20px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  
}

/* for mobile and tablet */
@media screen and (max-width: 768px) {
  .tours-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
    max-width: max-content;
  }

  .tour {
      max-width: 100%;
      margin: auto 15px;
  }

  .tours {
    padding: 20px 0
  }
}
