.logo-grid {
	position: relative;
	background-color: #f9f9f9;
}

.logo-grid::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 0.25rem;
	width: 100%;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(255, 213, 137, 1) 0%,
		rgba(214, 133, 33, 1) 10%,
		rgba(255, 213, 137, 1) 20%
	);
}

.logo-grid .button {
	font-family: "Roboto Mono", monospace;
	font-weight: 500;
	background-color: #c3412b;
	color: #fff;
	font-size: 1rem;
	text-wrap: balance;
	text-align: center;
	line-height: 1.1;
	border-radius: 3rem;
	padding: 1rem 2rem;
	-webkit-transition: background-color 0.5s ease-in-out;
	transition: background-color 0.5s ease-in-out;
	margin-top: 4rem;
	display: flex;
	justify-self: center;
}

.logo-grid .button:hover {
	background-color: #898a8a;
}

.logo-grid__content {
	text-align: center;
	margin-bottom: 4rem;
}

.logo-grid__content h2 {
	margin-bottom: 1rem;
	font-size: 2.5rem;
}

.logo-grid__logos {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	position: relative;
}

.logo-grid__logos--6 {
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
}

.logo-grid__logo {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 2rem;
	border-radius: 2rem;
	transition: all 0.3s;
}

.logo-grid__logo:hover {
	opacity: 1;
}

.logo-grid__logo img {
	max-width: 8rem;
	max-height: 2rem;
	object-fit: contain;
	transition: all 0.3s;
}

.logo-grid__logo:hover img {
	transform: scale(1.1);
}

/* Rounded */
.logo-grid--rounded {
	border-radius: 2rem;
}

.logo-grid--rounded::after {
	display: none;
}

/* White */
.logo-grid--white {
	background: #fff;
}

.logo-grid--white::after {
	display: none;
}

.logo-grid--white .logo-grid__logo {
	border: 1px solid #f9f9f9;
	padding: 0.5rem 1rem;
}

.customer-highlights__text .button {
	font-family: "Roboto Mono", monospace;
	font-weight: 500;
	background-color: #1a1b1d;
	color: #fff;
	font-size: 1rem;
	text-wrap: balance;
	text-align: center;
	line-height: 1.1;
	border-radius: 3rem;
	padding: 1rem 2rem;
	-webkit-transition: background-color 0.5s ease-in-out;
	transition: background-color 0.5s ease-in-out;
	margin-top: auto;
	align-self: flex-start;
}

.customer-highlights__text .button:hover {
	background-color: #898a8a;
}

@media (max-width: 1799px) {
}

@media (max-width: 1399px) {
}

@media (max-width: 1199px) {
	.logo-grid__content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.logo-grid__logos,
	.logo-grid__logos--6 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}
