*::before,
*::after {
	margin: 0;
	box-sizing: border-box;
	padding: 0;
	font-family: 'Manrope', sans-serif !important;
}
.staffSpeak_container {
	margin: 0 auto;
}

.swiper-slide {
	padding: 10px;
}

.staff-box {
	position: relative;
	background-color: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	width: 100%;
	
	min-height:350px;
	max-height:350px;
	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 20px;
  }
  
  .staff_titles {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
  }
  
  .staff_img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top; 
	margin-right: 15px;
}

  
  .staff_info {
	display: flex;
	flex-direction: column;
  }
  
  .name {
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
  }
  
  .location {
	font-size: 1rem;
	color: #777;
  }
  
  .testimony {
	font-size: 1.5rem;
	color: #555;
	line-height: 1.6;
	flex-grow: 1; 
  }
  
  .abs_quoteImg {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 30px;
	opacity: 0.1;
  }
  
  @media (max-width: 768px) {
	.staff-box {
	  min-height: 450px;
	  max-height: 450px;
	}
  }
  @media (min-width: 768px) and (max-width: 1024px) {
	.staff-box {
	  min-height: 500px;
	  max-height: 500px;
	}
}


  .backwards, .forward {
	
	cursor: pointer; 
	
  }
  
 