  
  /* HEADER STYLE */
  .trip-full-container {
    padding: 40px 120px;
  }
  .trip-name {
    margin: 40px 0px;
  }
  .trip-container .trip-title {
    font-weight: bold;
    font-size: 24px;
  }
  
  .trip-rate ul {
    display: flex;
    margin-top: 15px;
    list-style: none;
  }
  
  .trip-rate ul li {
    transform: rotate(-45deg);
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
  }
  
  .gallery-img {
    height: 280px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
  }
  
  .gallery-img img.trip-img {
    max-width: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s;
  }
  
  .gallery-img:hover img.trip-img {
    transform: scale(1.2);
  }
  
  .head-img {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  
  .see-all-images {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.49);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0px;
  }
  
  .see-all-images a {
    text-decoration: underline;
    font-size: 16px;
    color: #fff;
    margin: 0px 5px;
  }
  
  /* trip Info */
  
  .trip-info-container {
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 18px 0 rgba(104, 104, 104, 0.08);
    border: solid 1px #ebebeb;
    background-color: #ffffff;
    margin-top: 40px;
  }
  
  .trip-info-container .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .trip-info-container ul {
    list-style-type: inherit;
    margin-right: 30px;
  }
  
  .trip-info-container ul li {
    margin-top: 10px;
    line-height: 1.4rem;
  }
  
  .trip-info-container h5 {
    font-weight: bold;
    font-size: 15px;
    margin-top: 20px;
  }
  .trip-info-container p {
    margin-top: 30px;
    margin-right: 30px;
    line-height: 1.4rem;
  }
  
  .trip-info-container p.warning {
    color: #e22525;
    font-weight: bold;
  }
  
  .title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
  }
  .title-container .title{
    margin-bottom: 0px;
  }
  .title-container .help-info{
    display: flex;
    align-items: center;
  }
  .title-container .help-info span{
  font-size: 32px;
  font-weight: bold;
  color: #0970ce;
  margin: 0px 10px;
  }
  
  .packages-header{
    margin-bottom: 30px;
  }
  
  .packages-header .head-img{
  width: 150px;
  }
  
  /* Reserviation Table */
  .trip-info-container table {
    margin-top: 50px;
  }
  
  .trip-info-container table tbody,
  .trip-info-container table tfoot,
  .trip-info-container table thead {
    border-color: transparent !important;
    background-color: transparent !important;
  }
  .trip-info-container table th {
    background-color: #f4f6f8;
    padding: 20px 10px;
    text-align: center;
    font-weight: bold;
  }
  
  .trip-info-container table tr{
    border-bottom: 1px solid #ddd;
    background-color: transparent !important;
  }
  
  .trip-info-container table tr:last-child{
    border-bottom:0px;
  }
  
  .trip-info-container table td {
    text-align: center;
    vertical-align: middle;
    padding: 25px 5px;
    
  }
  
  .trip-info-container table td.price {
    color: #80bd00;
    font-weight: bold;
    font-size: 18px;
  }
  
  .trip-info-container table .reserve-btn {
    background-color: #0970ce;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 30px;
    font-weight: bold;
    color: #fff;
    padding: 5px 40px;
    cursor: pointer;
    transition: background-color 0.2s ;
  }
  
  .trip-info-container table .reserve-btn:hover{
    background-color: #0360b6;
  }


/* weekend packages */

.weekend-full-container {
    padding: 50px 0px;
  }
  
  .weekend-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .weekend-header .head-img {
    width: 120px;
  }
  
  .weekend-header .weekend-description {
    margin-top: 20px;
    text-align: center;
  }
  
  .weekend-header .weekend-description h2 {
    font-size: 25px;
    font-weight: bold;
  }
  .weekend-header .weekend-description p {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .weekend-container {
    padding: 40px 120px;
    overflow: hidden;
  }
  
  .weekend-container .weekend-card {
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
  }
  
  .weekend-container .weekend-card img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
  
  .card-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 30px 0px;
    border-top: 5px solid #3aa700;
    border-radius: 0px 0px 30px 30px;
  }
  
  .card-details .weekend-title {
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .card-details .price {
    text-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
  }
  
  .card-details .price span {
    background-color: #3aa700;
    padding: 0px 10px;
    border-radius: 15px;
  }
  
  .owl-carousel-trip .nav-btn {
    height: 47px;
    position: absolute;
    width: 40px;
    cursor: pointer;
    top: 50% !important;
  }
  
  .owl-carousel-trip .owl-prev.disabled,
  .owl-carousel-trip .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
  }
  
  .owl-carousel-trip .prev-slide {
    background: url("../images/prev.png");
    left: -48px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .owl-carousel-trip .next-slide {
    background: url("../images/next.png");
    right: -48px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  /* Packages container */

.packages-full-container {
    padding: 50px 0px;
  }
  
  .packages-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .packages-header .head-img {
    width: 200px;
  }
  
  .packages-header .packages-description {
    margin-top: 20px;
    text-align: center;
  }
  
  .packages-header .packages-description h2 {
    font-size: 25px;
    font-weight: bold;
  }
  .packages-header .packages-description p {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 40px 120px;
  }
  
  .package-card {
    height: 300px;
    border-radius: 15px;
    /* background-image: url("../images/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.39);
    padding: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .package-card .bg-img{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    min-height: 100%;
    min-width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
  
  .package-card .package-background {
    border-radius: 16px;
    border: solid 4px #ffffff;
    background-color: rgba(9, 112, 206, 0.57);
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transform: scale(0.8);
    transition: all 0.2s;
    opacity: 0;
  }
  
  .bottom-shadow {
    height: 120px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
  }
  
 .package-details {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 100px;
    padding: 10px;
    left: 0px;
    right: auto;
    transition: all 0.3s;
    z-index: 2;
  }
  
 .package-details .package-title {
    /* text-shadow: 0 3px 4px rgba(0, 0, 0, 0.5); */
    color: #fff !important;
    font-weight: bold;
    font-size: 14px !important;
    padding: 0px 20px;
    text-align: center;
  }
  
  .package-details p {
    color: #fff;
    margin-top: 20px;
    transition: opacity 0.3s;
    opacity: 0;
  }
  
  .package-details .price {
    background-color: #3aa700;
    padding: 5px 15px;
    border-radius: 15px;
  }
  
  .package-card:hover .package-background {
    opacity: 1;
    transform: scale(1);
  }
  .package-card:hover .package-details {
    top: 15px;
  }
  
  .package-card:hover .package-details p {
    opacity: 1;
  }  
  
  
  /* breadcrumb  */
  ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    margin:0;
    margin-bottom: 30px;
  }
  ul.breadcrumb li {
    display: inline;
    font-size: 14px;
    font-weight: bold;
  }
  ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: "|";
  }
  ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
  }
  ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
  }
  