:root {
    --cream: rgb(255, 250, 170);
    --brown: #983520;
    --green: #69832b;
  }
*{
    font-size: 1.5rem;
    box-sizing: border-box;
}
h1{
    font-size: 3rem;
    margin: 2.5rem 0 0;
}
h2{
    font-size: 2rem;
    margin: 2rem 0 1rem 1rem;
}
ul{
    padding: 1rem;
}
.about .details{
    padding: 1rem;
    display: flex;
    gap: 3rem;
    justify-content: space-evenly;
}
p{
    color: grey;
}
.gallery{
  width: 75%;
}
.packages-container{
    padding: 0;
    margin: 0;
}
.hero-img img{
    width: 100%;
    height:60vh;
    object-fit: cover;
}
.banner{
    display: flex;
    position: relative;
    flex-direction: column;
    color: var(--cream);
    font-size: 1.5rem;
    background: var(--brown);
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.flex{
  display: flex;
}
.packages-nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--green);
}

.packages-nav a{
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    border-right: 2px solid var(--brown);
    font-size: 1.5rem;
    color: #fff;
    font-weight: bolder;
}
.packages-nav a:hover{
  background: #983520;
}
.package-details{
    padding: 2rem;
    margin-left: 5rem;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: var(--brown);
  }
  .slide-container{
    height: 100%;
  }
  .swiper-slide img{
    object-fit: cover;
  }s
    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
    }

    @media only screen and (min-width: 769px) {
      .swiper-slide:first-child {
        transition: transform 100ms;
      }

      .swiper-slide:first-child img {
        transition: box-shadow 500ms;
      }

      .swiper-slide.swiper-slide-active:first-child {
        transform: translateX(50%);
        z-index: 2;
      }

      .swiper-slide.swiper-slide-active:first-child img {
        box-shadow: 0px 32px 80px rgba(0, 0, 0, 0.35);
      }

      .swiper-slide:nth-child(2) {
        transition: transform 100ms;
      }

      .swiper-slide.swiper-slide-next:nth-child(2) {
        transform: translateX(55%);
        z-index: 1;
      }

      .swiper[dir="rtl"] .swiper-slide.swiper-slide-active:first-child {
        transform: translateX(-50%);
      }

      .swiper[dir="rtl"] .swiper-slide.swiper-slide-next:nth-child(2) {
        transform: translateX(-55%);
      }
    }
