#dialog-form {
  display: none;
}
#dialog-form input {
  width: 90%;
  display: block;
  font-size: 1rem;
}
.tours {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.tours .tour {
  width: 500px;
  background-color: #f1f3f2;
  font-family: Gotham;
  margin: 1em 0;
}
.tours .tour .tour-data {
  margin: 1em;
}
.tours .tour .image {
  width: 100%;
}
.tours .tour .image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.tours .tour .name {
  font-weight: bold;
  font-size: 1.5em;
  text-align: right;
}
.tours .tour .date {
  font-size: 0.9em;
}
.tours .tour .desc {
  padding: 1em;
  font-size: 0.9em;
}
.tours .tour .price {
  text-align: right;
  font-size: 1.3em;
}
.tours .tour .links {
  display: flex;
  justify-content: space-around;
}

.tours .tour .links a {
  margin: .25rem .125rem;
  cursor: pointer;
  color: rgb(13, 110, 253);
  text-decoration: none;
  border-radius: 0.5em;
  border: 1px solid rgb(13, 110, 253);
  padding: 0.5em;
}

.tours .tour .links a:hover {
  color: white;
  background: rgb(13, 110, 253);
}
