.callout-slider-container {
    position: relative;
}

.callout-content {
    font-size: 18px;
    line-height: 20px;
    color: white;
    font-weight: 200;
    padding: 10px 25px;
    width: 100%;
    position: relative;
}

.callout-content::before {
    content: '';
    height: 94%;
    background: #509FD6;
    width: 1px;
    position: absolute;
    left: 0%; /* Adjust as needed */
}

#callout-slider {
    position: relative;
}

.swiper-pagination.callouts {
  position: absolute;
  bottom: var(--swiper-pagination-bottom,50px) !important;
  width: 80% !important;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  left: -30px !important;
}

@media screen and (max-width: 991px) {
  .callout-content {
	width: 100%;
	padding-right: 0px;
	font-size: 16px;
  }
  .swiper-pagination.callouts {
	width: 92% !important;
	text-align: center;
	bottom: var(--swiper-pagination-bottom,-50px) !important;
	left: 0px !important;
	display: block;
  }
}

