.cards-wrapper {
    display: flex;
    justify-content: center;
  }
  .card img {
    max-width: 100%;
    max-height: 100%;
  }
  .card {
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    border-radius: 0;
  }
  .carousel-inner {
    padding: 1em;
  }
  .carousel-control-prev,
  .carousel-control-next {
    background-color: #e1e1e1;
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
  @media (min-width: 768px) {
    .card img {
      height: 11em;
    }
  }

  /* new code here***************************************************************************** */
/* custom-swiper.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.exr-swp-hero-section {
    padding: 50px 0;
    background-color: #4a4a8c;
}

.exr-swp-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.exr-swp-swiper-container {
    padding: 20px 0;
}

.exr-swp-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; /* Explicit height for the slides */
    position: relative;
}

.exr-swp-slide-content {
    position: relative;
    width: calc(100% - 15px); /* Adjust the width for the gap */
    height: 100%; /* Ensure the slide content fills the slide */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.exr-swp-slide-content:hover {
    transform: scale(1.05);
}

.exr-swp-slide-content img {
    width: 100%;
    height: 100%; /* Ensure the image fills the slide content */
    object-fit: cover;
    border-radius: 10px; /* Retain border radius on hover */
}

.exr-swp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
    align-items: flex-start; /* Align content to the left */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px; /* Retain border radius on hover */
}

.exr-swp-tour-details {
    text-align: left;
    padding-bottom: 20px; /* Add padding to the bottom */
}

.exr-swp-tour-title {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.exr-swp-tour-inclusions {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping if necessary */
}

.exr-swp-tour-inclusions li {
    margin-right: 10px; /* Add horizontal spacing */
    display: flex;
    align-items: center;
}

.exr-swp-tour-inclusions li i {
    margin-right: 5px;
}

.exr-swp-swiper-button-next, .exr-swp-swiper-button-prev {
    color: white;
    transition: color 0.3s ease-in-out;
    z-index: 10; /* Ensure the buttons are on top */
}

.exr-swp-swiper-button-next:hover, .exr-swp-swiper-button-prev:hover {
    color: #ff4a57;
}

/* Simple underlined button without background */
.exr-swp-btn-underlined {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
}

.exr-swp-btn-underlined:hover {
    color: #ff4a57;
}
