.index {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.about-header {
	display: table;
	max-width: 70vw;
	text-align: center;
}

.about-header .gator-pkg-icon {
	display: table-cell;
	width: 35rem;
	height: auto;
}

.about-header h1 {
	display: table-cell;
	position: relative;
	font-size: 4rem;
	margin: 1rem;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	font-weight: bold;
}

.about-content {
	width: 90vw;
	max-width: 90vw;
	margin: 1rem 1rem 1rem 1rem;
	text-align: center;
}

.about-content p {
	font-size: 1.5rem;
	line-height: 1.6;
}

.image-banner {
	width: 100vw;
	overflow: hidden;
}

.scrolling-images {
	display: flex;
	width: max-content;
	animation: scroll-left 60s linear infinite;
}

.scrolling-images img {
	width: 550px;
	height: auto;
	flex-shrink: 0;
	margin-right: 0.5rem;
	border: 3px solid #000000;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-550px * 12));
	}
}

.overlay-text-mobile {
	display: none;
}

.overlay-text {
	display: flex;
	flex-direction: column;
	position: absolute;
	justify-content: center;
	align-items: center;
	gap: 5%;
	right: 15vw;
	width: 450px;
	height: 418px;
	transform: skewX(-20deg);
	background-color: #ffffff;
	z-index: 1;
}

.overlay-text h2 {
	position: relative;
	transform: skewX(20deg);
	font-size: 1.5rem;
	font-weight: bold;
	color: rgb(45, 52, 175);
	text-align: center;
	line-height: 1.5;
}

.overlay-text hr {
	position: relative;
	border: none;
	background: #a0a0a0;
	height: 0.25rem;
	width: 80%;
	position: relative;
	transform: skewX(20deg);
}

@media (max-width: 768px) {
	.about-header {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.about-header .gator-pkg-icon {
		width: 15rem;
	}

	.about-header h1 {
		font-size: 2.5rem;
	}

	.about-content {
		width: 80vw;
		max-width: 80vw;
	}

	.about-content p {
		font-size: 1.25rem;
	}

	.scrolling-images img {
		width: 325px;
	}

	.overlay-text {
		display: none;
	}

	.overlay-text-mobile {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 300px;
		height: auto;
		gap: 1rem;
		margin-top: -1rem;
		margin-bottom: 1rem;
		z-index: 1;
	}

	.overlay-text-mobile h2 {
		font-size: 1rem;
		font-weight: bold;
		color: var(--font);
		text-align: center;
		line-height: 1.5;
	}

	.overlay-text-mobile hr {
		border: none;
		background: var(--bg2);
		height: 5rem;
		width: 0.25rem;
		transform: skewX(-20deg);
	}
}