@media (max-width: 1380px) {
	body {
		width: 100%;
		display: flex;
		margin: 0;
		background-image: url('../images/backSandWall.jpg');
		background-size: cover;
		background-position: center;
		font-family:
			system-ui,
			-apple-system,
			'Segoe UI',
			Roboto,
			Arial,
			sans-serif;
	}

	.main {
		display: flex;
		width: 100%;
		flex-direction: column;
		background-color: rgb(14, 16, 20);
	}

	a {
		color: white;
		text-decoration: none;
		font-size: 23px;
	}

	a:active {
		border-bottom: 1px solid white;
	}

	.menuIcon {
		z-index: 7;
		width: 50px;
		height: 50px;
		position: absolute;
		right: 10px;
		top: 0px;
		filter: grayscale(100%) invert(100%);
	}

	nav a {
		text-transform: uppercase;
	}

	.navHidden {
		height: 50px;
		transition: 0.5s;
	}

	.navHidden * {
		transform: translateY(-500px);
	}

	.main-top {
		display: flex;
		flex-direction: column;
		background-color: transparent;
		width: 100%;

		background-image: url('../images/backSandWall.jpg');
		background-size: cover;
		background-position: center;
		position: relative;

		-webkit-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.582);
		-moz-box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.582);
		box-shadow: 0px 10px 5px 0px rgba(0, 0, 0, 0.582);
	}

	.main-top::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(10, 12, 16, 0.75) 0%, rgba(10, 12, 16, 0.92) 40%, rgba(10, 12, 16, 0.96) 100%),
			radial-gradient(700px 360px at 16% 10%, rgba(62, 130, 246, 0.18), transparent 55%),
			radial-gradient(560px 360px at 92% 22%, rgba(255, 255, 255, 0.06), transparent 55%);
		pointer-events: none;
	}

	.content {
		display: flex;
		flex-direction: column;
		align-items: center;
		color: white;
		position: relative;
		z-index: 1;
		gap: 18px;
		padding: 72px 14px 18px 14px;
	}

	.page-hero {
		width: 100%;
		padding: 14px 12px;
		border-radius: 18px;
		background: rgba(16, 18, 24, 0.55);
		backdrop-filter: blur(14px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
	}

	.page-hero__inner {
		padding: 14px 12px;
	}

	.eyebrow {
		margin: 0 0 8px 0;
		font-size: 12px;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.72);
	}

	.page-hero h1 {
		margin: 0;
		font-size: 30px;
		line-height: 1.12;
		letter-spacing: -0.02em;
	}

	.lead {
		margin: 12px 0 0 0;
		font-size: 16px;
		line-height: 1.55;
		color: rgba(255, 255, 255, 0.82);
	}

	.hero-badges {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 14px;
	}

	.badge {
		display: inline-flex;
		align-items: center;
		padding: 8px 12px;
		border-radius: 999px;
		font-size: 13px;
		color: rgba(255, 255, 255, 0.86);
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.12);
	}

	.garage-doors-types {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: center;
		font-size: 18px;
		gap: 16px;
		margin: 0;
	}

	.garage-doors-card {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		width: 100%;
		padding: 16px 14px 14px 14px;
		border-radius: 18px;
		background: rgba(16, 18, 24, 0.55);
		backdrop-filter: blur(14px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
	}

	.garage-doors-card h2 {
		text-align: left;
		margin: 4px 0 8px 0;
		font-size: 20px;
	}

	.garage-doors-card p {
		text-align: left;
		width: 100%;
		margin: 10px 0;
		color: rgba(255, 255, 255, 0.82);
		line-height: 1.55;
	}

	ul {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		gap: 10px;
		width: 100%;
		margin: 12px 0 0 0;
		padding: 0;
		list-style: none;
	}

	li {
		position: relative;
		background-color: rgba(255, 255, 255, 0.08);
		border-radius: 14px;
		padding: 12px 12px 12px 42px;
		width: 100%;
		text-align: left;
		margin: 0;
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
		color: rgba(255, 255, 255, 0.86);
		line-height: 1.45;
	}

	li::before {
		content: '✓';
		position: absolute;
		left: 14px;
		top: 12px;
		width: 18px;
		height: 18px;
		display: grid;
		place-items: center;
		border-radius: 999px;
		background: rgba(62, 130, 246, 0.2);
		border: 1px solid rgba(62, 130, 246, 0.35);
		color: rgba(255, 255, 255, 0.92);
		font-weight: 700;
		font-size: 12px;
	}

	.gallery {
		width: 100%;
	}

	.gallery__header {
		display: flex;
		flex-direction: column;
		gap: 6px;
		margin: 6px 2px 10px 2px;
	}

	.gallery__header h2 {
		margin: 0;
		font-size: 20px;
		letter-spacing: -0.01em;
	}

	.gallery__header p {
		margin: 0;
		color: rgba(255, 255, 255, 0.7);
		font-size: 14px;
	}

	.slider {
		display: block;
		width: 100%;
		overflow: hidden;
		position: relative;
		border-radius: 18px;
		background: rgba(16, 18, 24, 0.55);
		backdrop-filter: blur(14px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
		padding: 14px 0;
		mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
	}

	.slider-track {
		display: flex;
		align-items: center;
		gap: 14px;
		width: max-content;
		animation: scroll 32s linear infinite;
		will-change: transform;
		padding: 0 14px;
	}

	.slider:active .slider-track {
		animation-play-state: paused;
	}

	.slider img {
		width: 240px;
		height: 240px;
		object-fit: cover;
		border-radius: 14px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	}

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