#intro {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	place-items: center;
	padding: 20px;
	min-height: 100dvh;
	overflow: hidden;
}

.info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 30px 50px;
}

.info h1 {
	font-family: "Young Serif", serif;
	text-align: center;
	font-size: 3rem;
	margin-left: auto;
}
.info h2 {
	font-family: "Young Serif", serif;
	font-size: 3rem;
}
.info h3 {
	font-family: "Young Serif", serif;
	font-size: 2.3rem;
}
.info p {
	font-size: 1rem;
	margin-bottom: 10px;
}

.split-beer {
	display: flex;
	flex-direction: row;
}

.beer {
	max-width: 100%;
	width: 300px;
	border-radius: 20px;
	margin-left: 15px;
	border: 2px solid orange;
}

.beer:nth-child(2) {
	transform: translateY(-1.5rem);
}

/* -------- */

@media (max-width:1100px) {
	.beer {
		width: 300px;
	}

	#content {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 800px) {
	#intro {
		padding: 30px;
	}

	.beer {
		width: 150px;
	}

	.info {
		gap: 20px;
		padding: 30px 30px;
	}

	.info h1 {
		font-size: 2.0rem;
		margin-left: 50px;
	}
	.info h2 {
		font-size: 2.0rem;
		margin-left: 10px;
	}

	.info p {
		font-size: 0.7rem;
		margin-left: 40px;
	}
}

@media (max-width: 550px) {
	#intro {
		grid-template-columns: repeat(3, 1fr);
		grid-template-areas:
			"split-beer"
			"info";
	}

	.info {
		grid-area: info;
	}

	.split-beer {
		grid-area: split-beer;
		margin: 20px auto;
	}

	.beer {
		width: 110px;
		margin-left: 5px;
	}
}

.slideshowContainer {
	position: relative;
	overflow: hidden;
	margin: 30px auto;
	width: 600px;
	height: 850px;
}

@media only screen and (max-width:46.1875em) {
	.slideshowContainer {
		width: 350px;
		height: 500px;
	}
}

.imageSlides {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: -1;
}

/* add 'visible' class via Javascript */
.visible {
	opacity: 1;
}

.slideshowArrow {
	font-size: 7em;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: opacity 0.2s ease-in-out;
}

.slideshowArrow:hover {
	opacity: 0.75;
}

#leftArrow {
	position: absolute;
	left: 4%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#rightArrow {
	position: absolute;
	right: 4%;
	top: 50%;
	transform: translate(50%, -50%);
}

.slideshowCircles {
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.circle {
	display: inline-block;
	margin-left: 3px;
	margin-right: 3px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: solid 2px rgba(255, 255, 255, 0.5);
	transition: 1s ease-in-out;
}

.dot {
	background-color: rgba(255, 255, 255, 0.7);
	border: solid 2px rgba(255, 255, 255, 0.5);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

.testimonials {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 55px 0;
	font-family: 'Poppins', sans-serif
}

.testimonials::before {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	background: rgba(24, 20, 4, 0.7);
}

.testimonials .title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	padding: 20px 0;
	max-width: 600px;
	margin: 0 auto;
}

.testimonials .title h5 {
	color: #c9c9c9;
	line-height: 1.2em;
	font-size: 18px;
	font-weight: 900;
	margin-bottom: -3px;
}

.testimonials .title h2 {
	color: #eaeaea;
	line-height: 1.2em;
	font-weight: 900;
	font-size: 41px;
	letter-spacing: -1px;
	margin: 0
}

.testimonials .title img {
	margin-top: -10px;
}

.testimonials .title p {
	margin: 0 0 10px;
	margin-bottom: 0;
	color: #5A3733;
}

.testimonials .testi .item {
	width: 100%;
	background: #dedede;
	padding: 50px 30px;
	border-radius: 15px;
}
@media only screen and (max-width:46.1875em) {
	.testimonials .testi .item {
		height: 60%;
	}
}

.testimonials .testi .item .profile {
	display: flex;
	padding-left: 15px;
}

.testimonials .testi .item .profile img {
	border-radius: 100%;
	width: 50px;
	height: 50px;
	object-fit: cover
}

.testimonials .testi .item .profile .information {
	padding-left: 20px;
	margin-bottom: 15px
}

.testimonials .testi .item .profile .information .stars i {
	color: #151613
}

.testimonials .testi .item .profile .information p {
	font-size: 24px;
	margin: 0px auto 0px;
	color: #5A3733;
	font-weight: 900;
	line-height: 1;
}

.testimonials .testi .item .profile .information span {
	color: #EB6D2F;
	font-weight: bold;
	margin-top: -4px;
	line-height: 1.6em;
	font-size: 14px;
}

.testimonials .testi .item>p {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.6em;
	display: block;
	z-index: 2;
	font-style: italic;
	color: #5A3733;
	text-align: center;
}

.testimonials .testi .item .icon {
	text-align: center;
}

