.growfast-prev-next-pages {
	display: flex;
	flex-wrap: wrap;
}

.growfast-prev-next-pages>div {
	width: 50%;
	position: relative;
	justify-content: center;
	align-items: center;
	display: flex;
}

@media (max-width: 768px) {
	.growfast-prev-next-pages>div {
		width: 100%;
	}
}

.growfast-prev-next-pages__bg {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: block;
	position: absolute;
}

.growfast-prev-next-pages__bg--image:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: '';
	z-index: 1;
	display: block;
	opacity: 0.3;
	-webkit-transition: opacity 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
	transition: opacity 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s;
}
.growfast-prev-next-pages > div:hover .growfast-prev-next-pages__bg--image:after {
	opacity: 0.8;
}

.growfast-prev-next-pages__bg--image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) 0s, opacity 0.3s ease;
}

.growfast-prev-next-pages > div:hover .growfast-prev-next-pages__bg--image {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.growfast-prev-next-pages__next__content,
.growfast-prev-next-pages__prev__content {
	min-height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	padding: 1rem;
}

.growfast-prev-next-pages__prev__content {
	text-align: right;
}

@media (max-width: 992px) {
	.growfast-prev-next-pages__next__content,
	.growfast-prev-next-pages__prev__content {
		text-align: center;
	}
}

.growfast-prev-next-pages__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	display: block;
}

.growfast-prev-next-pages__content--title {
	display: flex;
	align-items: center;
}

.growfast-prev-next-pages__content--title svg {
	margin: 0 0 -7px 0;
	opacity: 0;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	width: 24px;
	height: 24px;
}
@media (max-width: 992px) {
	.growfast-prev-next-pages__content--title svg {
		display: none;
	}
}

.growfast-prev-next-pages__next__content,
.growfast-prev-next-pages__prev__content {
	-webkit-transform: translateX(0px) translateZ(0);
	-webkit-transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1);
	transform: translateX(0px) translateZ(0);
	transition: transform 0.4s cubic-bezier(0.05, 0.2, 0.1, 1);
}

@keyframes leftArrowStart {
	0% {
		transform: translateX(64px);
	}

	100% {
		transform: translateX(-24px);
	}
}

@keyframes leftArrowEnd {
	0% {
		transform: translateX(-24px);
	}

	100% {
		transform: translateX(-96px);
	}
}

@keyframes rightArrowStart {
	0% {
		transform: translateX(-64px);
	}

	100% {
		transform: translateX(24px);
	}
}

@keyframes rightArrowEnd {
	0% {
		transform: translateX(24px);
	}

	100% {
		transform: translateX(96px);
	}
}

@media (min-width: 993px) {
	.growfast-prev-next-pages__next:hover .growfast-prev-next-pages__next__content{
		transform: translateX(-24px) translateZ(0);
		backface-visibility: hidden;
	}
	.growfast-prev-next-pages__prev:hover .growfast-prev-next-pages__prev__content {
		transform: translateX(24px) translateZ(0);
		backface-visibility: hidden;
	}
	.growfast-prev-next-pages__prev .growfast-prev-next-pages__content--title svg {
		animation: leftArrowEnd 0.7s cubic-bezier(0, 0.2, 0.1, 1) forwards;
	}
	
	.growfast-prev-next-pages__prev:hover .growfast-prev-next-pages__content--title svg {
		animation: leftArrowStart 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) forwards;
		opacity: 1;
	}
	
	.growfast-prev-next-pages__next .growfast-prev-next-pages__content--title svg {
		animation: rightArrowEnd 0.7s cubic-bezier(0, 0.2, 0.1, 1) forwards;
	}
	
	.growfast-prev-next-pages__next:hover .growfast-prev-next-pages__content--title svg {
		animation: rightArrowStart 0.4s cubic-bezier(0.05, 0.2, 0.1, 1) forwards;
		opacity: 1;
	}
}