.riven-stream-team {
	position: relative;
	width: 100%;
}

.riven-stream-team__slider {
	position: relative;
	overflow: hidden;
}

.riven-stream-team .swiper {
	width: 100%;
}

.riven-stream-team .swiper-wrapper {
	align-items: stretch;
}

.riven-stream-team .swiper-slide {
	height: auto;
}

.riven-stream-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: #ffffff;
	border-radius: 20px;
	transition: all .3s ease;
}

.riven-stream-card:hover {
	transform: translateY(-8px);
}

.riven-stream-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 24px 24px;
}

.riven-stream-card__media {
	position: relative;
	overflow: hidden;
	height: 240px;
}

.riven-stream-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.2);
	z-index: 1;
}

.riven-stream-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.riven-stream-card:hover .riven-stream-card__image {
	transform: scale(1.08);
}

/*------------------------------------
# Avatar
------------------------------------*/

.riven-stream-card__avatar {
	position: absolute;
	top: -7px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 4px solid #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
	z-index: 10;
	transition: all .3s ease;
}


.riven-stream-card__avatar img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/*------------------------------------
# Content
------------------------------------*/

.riven-stream-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 24px 24px;
}

.riven-stream-card__name {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #111111;
}

.riven-stream-card__designation {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
}

.riven-stream-card__description {
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.7;
	color: #6b7280;
}

.riven-stream-card__body>*:last-child {
	margin-bottom: 0;
}

/*------------------------------------
# Social
------------------------------------*/

.riven-stream-card__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.riven-stream-card__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	font-size: 18px;
	color: #111111;
	background: #f5f5f5;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	text-decoration: none;
	transition: all .3s ease;
}

.riven-stream-card__social a:hover {
	color: #ffffff;
	background: #2563eb;
	border-color: #2563eb;
	transform: translateY(-3px);
}

.riven-stream-card__social svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/*------------------------------------
# Navigation
------------------------------------*/

.riven-stream-team__prev,
.riven-stream-team__next {
	position: absolute;
	top: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
	cursor: pointer;
	z-index: 20;
	transform: translateY(-50%);
	transition: all .3s ease;
}


.riven-stream-team__next {
    right: 0px;
}

.riven-stream-team__prev:hover,
.riven-stream-team__next:hover {
	background: #2563eb;
	color: #ffffff;
	border-color: #2563eb;
}

.riven-stream-team__prev.swiper-button-disabled,
.riven-stream-team__next.swiper-button-disabled {
	opacity: .35;
	cursor: not-allowed;
	pointer-events: none;
}

/*------------------------------------
# Pagination
------------------------------------*/

.riven-stream-team .swiper-pagination {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 35px;
}

.riven-stream-team .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 !important;
	background: #d1d5db;
	border-radius: 50%;
	opacity: 1;
	transition: all .3s ease;
}

.riven-stream-team .swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 999px;
	background: #2563eb;
}


/* Navigation Button */

.riven-stream-team__prev,
.riven-stream-team__next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
}

/* Elementor Icon */

.riven-stream-team__prev i,
.riven-stream-team__next i,
.riven-stream-team__prev svg,
.riven-stream-team__next svg {
	width: 18px;
	height: 18px;
	font-size: 18px;
}

/* SVG inherit color */

.riven-stream-team__prev svg,
.riven-stream-team__next svg {
	fill: currentColor;
}


/*------------------------------------
# Responsive
------------------------------------*/

@media (max-width: 1024px) {

	.riven-stream-team__prev {
		left: 0;
	}

	.riven-stream-team__next {
		right: 0;
	}

}

@media (max-width: 767px) {

	.riven-stream-card__media {
		height: 200px;
	}

	.riven-stream-card__avatar {
		width: 80px;
		height: 80px;
		top: -40px;
	}

	.riven-stream-card__body {
		padding: 52px 20px 20px;
	}

	.riven-stream-card__name {
		font-size: 20px;
	}

	.riven-stream-card__description {
		font-size: 14px;
	}

	.riven-stream-team__prev,
	.riven-stream-team__next {
		display: none;
	}

}