.text_overlaped_image {
  position: relative;
}

.overlapped_text {
  position: absolute;
  bottom: 22px;
  transform: translate(-50%, 50%);
  left: 70px;
  text-shadow: 0px 0px 20px black;
}

/* scroll bar */
    .text_overlaped_image {
        position: relative;
    }

    .overlapped_text {
        position: absolute;
        bottom: 22px;
        transform: translate(-50%, 50%);
        left: 70px;
    }

    /* scroll bar */
    .innerpage .scrollbar {
        margin-left: 10px;
        float: left;
        height: 100%;
        width: 100%;
        overflow-y: scroll;
    }

    .innerpage .force-overflow {
        min-height: 450px;
    }

    .innerpage .custom-scroll {
        max-height: 92vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 10px;
        scrollbar-width: thin;
        scrollbar-color: #f89520 rgba(248, 149, 32, 0.2);
    }

    .image_gradient {
        position: relative;
    }

    .image_gradient::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(1deg, #fff 2%, rgba(218, 247, 231, 0) 13%);
        z-index: 2;
        pointer-events: none;
    }

    /* Chrome, Edge, Safari */
    .innerpage .custom-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .innerpage .custom-scroll::-webkit-scrollbar-track {
        background: rgba(248, 149, 32, 0.2);
        border-radius: 10px;
    }

    .innerpage .custom-scroll::-webkit-scrollbar-thumb {
        background: #f89520;
        border-radius: 10px;
    }

@media (max-width: 576px) {
  
   .innerpage .custom-scroll {
    max-height: 40vh;
    overflow-y: auto !important;
    overflow-x: hidden;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #f89520 rgba(248, 149, 32, 0.2);
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  
  }
	
}

.pagination-wrapper ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding-left: 0;
  justify-content: center;
}
.pagination-wrapper li a,
.pagination-wrapper li span {
  padding: 6px 12px;
  border: 1px solid #ccc;
  color: #000;
  text-decoration: none;
}
.pagination-wrapper .current {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
@media (max-width:767px){
	.image_gradient::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/* background: linear-gradient(1deg, #fff 2%, rgba(218, 247, 231, 0) 13%); */
		background:none;
		z-index: -1;
	}
}