.page-info {
  background-position: center 55%;
  background-repeat: no-repeat;
  background-size: cover;

  height: 50vh;
  width: 100vw;

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-info::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-image: linear-gradient(0deg, rgba(8, 9, 14, .9) 0%, rgba(8, 9, 14, .5) 100%);
  opacity: 0.5;
}

.page-title {
  padding-top: calc(7.75rem);
  margin-top: auto;
  margin-bottom: auto;

  z-index: 10;

  text-shadow: 5px 5px 2px black;
  color: white;
  font-family: Mogra;
  font-size: 4rem;
  text-transform: uppercase;
}

.content {
  max-width: 75rem;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.content-headers {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
  gap: 1rem;
}

.content-header {
  font-family: Mogra;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.content-subheader {
  font-size: 1rem;
  font-weight: 700;
}

.content-columns {
  display: flex;
  gap: 5rem;
}

.content-columns>* {
  flex: 1 0 0px;
}

.right {
  --track-card-count: 1;
  width: 100%;
}

.track-wrapper {
  width: calc((min(75rem, 100vw) - 5rem) / 2);
  height: 20rem;
}

.track-slide {
  width: fit-content;
  display: flex;
  flex-direction: row;
}

.column-image {
  width: calc((min(75rem, 100vw) - 5rem) / 2);
}

.column-image>img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.dots {
  top: 1rem !important;
  bottom: unset !important;
  transform: translate(-50%, 0);
  background-color: transparent;

  width: 100%;
  gap: 0.5rem;
}

.dot,
.dot::before {
  width: 100%;
  border-radius: 0;
  height: 0.25rem;
}

.dot::before {
  background-color: white;
}

.dot.active::before {
  background-color: #b2b8c1;
}

.track-left,
.track-right {
  transform: scale(0.85);
  top: unset;
  bottom: 0;
  margin: 0.5rem;
  filter: invert();
}

.track-left {
  left: unset;
  right: 4rem;
}

.track-right {
  right: 0;
  transform: rotate(180deg) scale(0.85);
}

.book-now-button {
  margin: 1rem;
  margin-bottom: 2.5rem;

  padding: 0.75rem 0;

  text-align: center;
  background-color: rgb(239, 65, 35);
  border-radius: 4px;
  text-transform: uppercase;
  color: white !important;

  display: flex;
  align-items: center;
  justify-content: center;
  fill: white;
  gap: 0.75rem;
}

.mobile-floating-now-button {
  display: none;
}

@media only screen and (max-width: 1280px) {
  .mobile-floating-now-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 1rem;
    z-index: 10;
    display: flex !important;
  }

  .mobile-floating-now-button-bg {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(3rem + 2rem);
    background-color: white;
    width: 100vw;
    border-top: 2px solid #f5f7f9;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
  }

  footer {
    padding-bottom: 6rem;
  }

  .page-title {
    padding-top: 4rem;
    font-size: 2rem;
  }

  .page-info {
    height: 25vh;
  }

  .content-columns {
    flex-direction: column;
  }

  .track-wrapper {
    width: 80vw;
    height: 15rem;
    margin: 0 auto;
  }

  .column-image {
    width: 80vw;
  }

  .column-image>img {
    height: 15rem;
  }

  .track-left,
  .track-right {
    display: none;
  }

  .content {
    width: 80vw;
  }

  .content-columns {
    gap: 2rem;
  }

  .content-headers {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .content-header {
    font-size: 1.5rem;
  }
}
