.svc_cards {
    display: flex;
    overflow-x: auto;
    padding: 10px;
}

.svc_card_story_container {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    border-radius: 5px;
    width: 300px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.svc_video_container {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.svc_video_container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc_card_info {
    padding: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
}

.svc_card_title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.svc_card_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc_price {
    font-size: 14px;
    font-weight: 600;
}

.view-details {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}


.carousel-inner img {
    width: 100%;
    height: auto;
}

.carousel-caption {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-body {
    text-align: center;
}



#cCarousel #cCarousel-inner {
  display: flex;
  position: relative;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
}

.cCarousel-item {
width: 249px;
     
    height: 0px;
    border: 2px solid white;
   
}

.section_video{
    height: 500px;
    overflow:auto;
}
.cCarousel-item    video {
  width: 100%;
  object-fit: cover;
  min-height: 246px;
  color: white;
}

.cCarousel-item   .infos {
  height: 100%;
  display: flex;
      /*z-index: 99999 !important;*/
    position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: white;
  color: black;
      margin-top: -100%;
}

.cCarousel-item   .infos button {
  background: #222;
  padding: 10px 30px;
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}


 .arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                background: rgba(0, 0, 0, 0.5);
                color: white;
                padding: 10px;
                cursor: pointer;
                font-size: 18px;
                border-radius: 50%;
                user-select: none;
            }

            #prev {
                left: 10px;
            }

            #next {
                right: 10px;
            }
