:root {
  --blue-color: #007aff;
  --primary-color: #ff9d3d;
  --max-width-laptop: 1200px;
  --max-width-desktop: 1700px;
}

.destination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: fit-content;
}

.destination .notifier {
  display: inline;
  width: fit-content;
  padding: 4px 12px 6px 12px;
  margin-top: 12px;
  font-size: 14px;
  border-radius: 12px;
  background-color: #c0c0c0;
  margin-bottom: 12px;

  font-weight: 500;
}

.destination .not-h3 {
  font-size: 26px;
}

.destination-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.destination-holder .dest-card {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  position: relative;
  max-width: 360px;
  min-width: 250px;
  height: 340px;
  margin: 12px 16px;
  border-radius: 12px;
  overflow: hidden;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dest-card .dark-span {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #00000044;
  z-index: 10;
}

.dest-card .text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 12px;
  z-index: 12;
  color: white;
  font-weight: bold;
  letter-spacing: 0.5;
  text-transform: capitalize;
}

.dest-card .text h4 {
  margin-bottom: 6px;
  cursor: pointer;
  text-transform: capitalize;

  &:hover {
    color: var(--primary-color);
    transition: all 0.59s;
  }
}

.dest-card .text h4,
.dest-card .text p {
  display: inline;
  text-align: center;
}
