body.archive #main {
  padding: 15px;
}
.destinations-breadcumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}
.destinations-breadcumb-item {
  padding: 0.5rem 1rem;
  position: relative;
}
.destinations-breadcumb-item:first-child {
  padding-left: 0;
}
.destinations-breadcumb-item::after {
  content: '>';
  position: absolute;
  top: 50%;
  right: -0.25em;
  transform: translate(0, -50%);
}
.destinations-breadcumb-item:last-child::after {
  display: none;
}
.destinations {
  display: flex;
  overflow: auto;
}
.destination--card {
  position: relative;
  flex: 1 0 auto;
  width: 192px;
  height: 249px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
}
.destination-name {
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  justify-content: center;
  align-items: center;
  z-index: 4;
  border-radius: 4px;
  font-size: 2rem;
  transition: 0.5s;
}
.destination-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  z-index: 1;
}
.booking-button {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #FEBD11;
  color: #000000;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  text-align: center;
  z-index: 100;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  width: clamp(240px, 80%, 100%);
}
.booking-button.sticky {
  position: static;
  display: block;
  transform: none;
  box-shadow: none;
  margin: 1rem auto;
}
/* zones */

.zones-carousel {
  display: flex;
  overflow: auto;
  margin-bottom: 1rem;
}
.zone-card {
  margin-right: 15px;
  display: flex;
  position: relative;
  flex: 1 0 auto;
  width: 192px;
  height: 249px;
  overflow: hidden;
}
.zone-name {
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  justify-content: center;
  align-items: center;
  z-index: 4;
  border-radius: 4px;
  font-size: 1.25rem;
  transition: 0.5s;
  text-align: center;
}
.zone-name.default {
  font-size: 1rem;
}
.zone-name:hover {
  background: rgba(0, 0, 0, 0.4);
}
.zone-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #1193B1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  background-repeat: no-repeat;
}

/** end zones */

/** carousel */
.carousel-wrapper {
  position: relative;
}
.prev-btn,
.next-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translate(0, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 4rem;
  font-size: 1.5rem;
}
.prev-btn {
  left: 0;
}
.next-btn {
  right: 0;
}

/** end carousel */

@media screen and (min-width: 768px) {
  .destination--card {
    width: 320px;
    height: 415px;
    max-width: 320px;
  }
  .booking-button {
    bottom: 40px;
  }

  /** zones */
  .zone-card {
    width: 320px;
    height: 415px;
    max-width: 320px;
  }
  .zone-name {
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    justify-content: center;
    align-items: center;
    z-index: 4;
    border-radius: 4px;
    font-size: 1.75rem;
    transition: 0.5s;
  }
  .zone-name.default {
    font-size: 1.25rem;
  }
  /** end zones */

  /** carousel */
  .carousel-wrapper:hover .prev-btn,
  .carousel-wrapper:hover .next-btn {
    display: flex;
  }
  /** end carouse */
}
