#private-trips {
  width: 90%;
  margin: inherit auto;
  /* padding: 18px; */
  /* box-shadow: 0 0 3px 0; */
  /* border-radius: 8px; */
}
#private-trips .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;

  position: relative;
  margin: 2rem auto;
  padding: 18px;
  /* background-color: red; */
  box-shadow: 0 0 3px 0;
  border-radius: 8px;
  color: #fff !important;
}
#private-trips .content-wrapper .img-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;

  z-index: -90;
  overflow: hidden;
}
#private-trips .content-wrapper .img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* filter: blur(1px) grayscale(1); */
  filter: blur(2px) brightness(0.6);
  overflow: hidden;
}
#private-trips .content-wrapper h1 {
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 0 2px;
  color: var(--para-color);
}

#private-trips .content-wrapper h3,
#private-trips .content-wrapper h2 {
  margin-top: 1.1rem;
  opacity: 0.75;
}

#private-trips .content-wrapper ul li {
  list-style: inside;
  margin: 0.75rem auto;
}
#private-trips .content-wrapper p span {
  /* font-size: large; */
  font-weight: bold;
}

#final-list {
  list-style: square;
}
/* =================== RESPONSIVE =================== */

@media (width > 992px) {
  #private-trips {
    width: 60%;
  }
  #private-trips .content-wrapper h1 {
    font-size: 3rem;
  }
}
