.slide-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.slide-content img {
	/* width: 60vw;
	height: 40vw; */
	/* height: 400px; */
	/* height: 30vw;
    width: auto; */

	width: 500px;
	margin-left: 30px;

	margin-bottom: 3vw;
}

.slide-content h2 {
	color: #f41969;
}

.slide-content div {
	align-self: start;
}

.slide-prev,
.slide-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}
.slide-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
.slide-prev:hover,
.slide-next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}
.slide-text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
	text-shadow: 0px 0px 2px #000;
}
.slide-number {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/************CSS Animation***********/

.animated {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.intro-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.intro-content-text {
	display: flex;
	flex-direction: column;
}

.intro-content-illustration {
	margin-top: 30px;
	margin-left: 30px;
}

.intro-content-illustration img {
	width: 600px;
}

/* Beg Partnership.html styles*/

@media screen and (max-width: 800px) {
	.slide-content {
		flex-direction: column-reverse;
	}
	.slide-content img {
		width: 100%;
		height: auto;
	}

	.intro-content {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
	}

	.intro-content-illustration {
		width: 100%;
		margin: 0;
	}

	.intro-content-illustration img {
		width: 100%;
	}
}
