.carousel {
    min-height: 520px;
    background: no-repeat;
    background-position: center;
    background-size: auto 70%;
	display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

.carousel p {
	font-weight: 400;
}

.testimonial-content p {
	font-size: 25px;
	line-height: 1.5;
	font-family: 'stolzl';
	font-weight: 600;
}

@media only screen and (min-width: 768px) {
	.testimonial-content p {
		font-size: 36px;
	}
}

.slide-icon {
    margin: 0 auto 40px auto;
}

.testimonial-nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 90%;
    margin: auto;
    right: 0;
    left: 0;
	top: 50%;
    transform: translateY(-50%);
}

.testimonial-nav i {
    font-weight: 900;
    font-size: 32px;
    border: 5px solid black;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
	.testimonial-nav { display: none; }
}