.hero-image-wrapper {
	position: absolute;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	z-index: -1;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 80%;
	display: block;
}

.hero {
	display: flex;
	position: relative;
	height: 600px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 820px;
	height: 280px;
	top: 184px;
	background-color: rgba(var(--sixty-rgb), 0.7);
	border-radius: 20px;
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-content > h1 {
	margin: 0;
	color: var(--ten);
}

.hero-content > h2 {
	margin: 0;
}

.hero-content p {
	width: 95%;
	margin-top: 16px;
	margin-bottom: 16px;
}

.inventory-btn {
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--thirty);
	color: white;
	width: 235px;
	height: 32px;
	border-radius: 50px;
	font-size: 1rem;
	padding: 0.6em 1.2em;
	cursor: pointer;
	text-align: center;
	transition: 0.3s ease;
	text-decoration: none;
}

.inventory-btn:hover {
	background-color: var(--ten);
}

.intro {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.intro-title {
	margin: 0;
}

.intro-title>.highlight-yellow {
	color: var(--ten);
}

.intro>p {
	margin: 0;
	text-align: left;
}

.we-provide-hr {
	margin-top: 32px;
	margin-bottom: 32px;
}

.we-provide-item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
}

.we-provide-item--second {
	flex-direction: row-reverse;
}

.we-provide-item-title {
	margin: 0;
}

.we-provide-item-paragraph {
	width: 360px;
	margin: 0;
}

.we-provide-item-image-wrapper {
	width: 736px;
	height: 360px;
	border-radius: 20px;
	overflow: hidden;
}

.we-provide-item-image {
	width: 100%;
}

.contact-bar {
	height: 80px;
	width: 100%;
	background-color: var(--ten);
	stroke: var(--sixty);
	stroke-width: 2px;
}

.contact-bar-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.contact-bar-wrapper > h3 {
	color: var(--sixty);
}

.contact-bar-info {
	display: flex;
	justify-content: space-between;
	gap: 64px;
}

.contact-bar-phone-number {
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-bar-phone-number > a {
	text-decoration: none;
	color: var(--sixty);
	font-size: 1.44rem;
	font-weight: 600;
}

.contact-bar-email-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 184px;
	height: 32px;
	background-color: var(--thirty);
	gap: 8px;
	fill: white;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.3s ease;
	text-decoration: none;
}

.contact-bar-email-button > span {
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	user-select: none;
}

.contact-bar-email-button-icon {
	stroke-width: 1px;
	fill: white;
}

.contact-bar-email-button:hover {
	background-color: var(--ten);
	box-sizing: border-box;
	border: 1px solid var(--sixty);
}

.testimonials {
	margin-top: 32px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 16px;
	margin-bottom: 32px;
}

.testimonials h2 {
	margin: 0;
}

.google-reviews {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	margin-top: 32px;
}

.google-logo-word {
	width: 235px;
}

.google-reviews-items {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.google-reviews-item {
	width: 328px;
	height: 224px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: white;
	padding: 16px;
}

.google-review-info {
	display: flex;
	justify-content: space-between;
}

.google-review-author-photo-wrapper {
	width: 72px;
	height: 72px;
	border-radius: 50%;
}

.google-review-author-photo-wrapper>img {
	width: 72px;
}

.google-review-author-info {
	display: flex;
	gap: 8px;
}

.google-review-author-info-text {
	display: flex;
	flex-direction: column;
}

.google-review-author-info-text > cite {
	font-style: normal;
	font-size: 1.2rem;
}

.google-review-author-info-text > * {
	margin-bottom: 4px;
}

.google-review-text {
  height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.google-review-logo {
	width: 24px;
	height: 24px;
}

@media (max-width: 560px) {
	.hero-content {
		width: 95%;
		height: 432px;
		top: 102px;
	}
	.contact-bar {
		height: 176px;
	}

	.contact-bar-wrapper {
		flex-direction: column;
		padding: 16px;
	}
	
	.contact-bar-info {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 8px;
	}

	.contact-bar-wrapper > h3 {
		font-size: 1.44rem;
		margin-top: 8px;
		margin-bottom: 8px;
	}

	.contact-bar-phone-number > a {
		font-size: 1rem;
	}

	.google-reviews-items {
		flex-direction: column;
	}

	.google-reviews {
		flex-direction: column;
	}

	.we-provide-item {
		flex-direction: column;
		gap: 8px;
	}

	.we-provide-item-image-wrapper {
		width: 360px;
		height: 180px;
	}
}