/* ===== VARIABLES ===== */
:root {
	--clr-bg: #0a0d14;
	--clr-surface: #111520;
	--clr-surface2: #161c2d;
	--clr-border: rgba(255, 255, 255, 0.07);
	--clr-accent: #f5820a;
	--clr-accent2: #ffa740;
	--clr-blue: #1e5bff;
	--clr-text: #e8eaf2;
	--clr-muted: #7a8099;
	--clr-white: #ffffff;
	--radius: 16px;
	--radius-sm: 8px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--font-display: "Unbounded", sans-serif;
	--font-body: "Geologica", sans-serif;
	--container: 1200px;
	--header-h: 92px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--clr-bg);
	color: var(--clr-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	text-align: justify;
}
h1, h2, h3, h4, h5, h6 {
	text-align: left;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
ul {
	list-style: none;
}

/* ===== CONTAINER ===== */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(10, 13, 20, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--clr-border);
	transition: background var(--transition);
}
.header.scrolled {
	background: rgba(10, 13, 20, 0.97);
}
.header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

/* ===== CABINET BUTTON ===== */
.btn--cabinet {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 20px;
	font-size: 13px;
	font-family: var(--font-body);
	font-weight: 500;
	border-radius: 50px;
	border: 1px solid rgba(0, 190, 220, 0.35);
	background: rgba(0, 190, 220, 0.07);
	color: var(--clr-text);
	white-space: nowrap;
	cursor: default;
	flex-shrink: 0;
	transition: border-color var(--transition), background var(--transition);
}
.btn--cabinet:hover {
	border-color: rgba(0, 190, 220, 0.6);
	background: rgba(0, 190, 220, 0.12);
}

/* ===== LOGO ===== */
.logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.logo__img {
	height: 80px;
	width: auto;
	filter: drop-shadow(0 0 6px rgba(0, 180, 210, 0.25));
	transition: filter 0.35s ease;
}
.logo:hover .logo__img {
	filter: drop-shadow(0 0 12px rgba(0, 200, 230, 0.55)) brightness(1.1);
}

/* ===== NAV ===== */
.nav {
	display: flex;
	align-items: center;
	gap: 8px;
}
.nav__link {
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	color: var(--clr-muted);
	transition:
		color var(--transition),
		background var(--transition);
}
.nav__link:hover {
	color: var(--clr-white);
	background: rgba(255, 255, 255, 0.05);
}
.nav__link.active {
	color: var(--clr-accent);
	background: rgba(245, 130, 10, 0.08);
}

/* ===== BURGER ===== */
.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--clr-text);
	border-radius: 2px;
	transition: var(--transition);
}
.burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
	opacity: 0;
}
.burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: var(--header-h);
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
}
.hero__particle {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
}
.p1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--clr-accent), transparent 70%);
	top: -200px;
	right: -100px;
	animation: float1 8s ease-in-out infinite;
}
.p2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--clr-blue), transparent 70%);
	bottom: 0;
	left: -100px;
	animation: float1 11s ease-in-out infinite reverse;
}
.p3 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, #ff6a00, transparent 70%);
	top: 40%;
	left: 40%;
	animation: float1 7s ease-in-out infinite 2s;
	opacity: 0.15;
}
@keyframes float1 {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-30px) scale(1.05);
	}
}
.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	padding-top: 60px;
	padding-bottom: 80px;
}
.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border: 1px solid rgba(245, 130, 10, 0.3);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 500;
	color: var(--clr-accent);
	background: rgba(245, 130, 10, 0.07);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.hero__badge::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--clr-accent);
	box-shadow: 0 0 8px var(--clr-accent);
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.4);
		opacity: 0.5;
	}
}
.hero__title {
	font-family: var(--font-display);
	font-size: clamp(60px, 10vw, 120px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #fff 30%, var(--clr-accent2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero__sub {
	font-size: clamp(16px, 2vw, 22px);
	color: var(--clr-muted);
	max-width: 500px;
	line-height: 1.6;
}
.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.hero__scroll span {
	display: block;
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	position: relative;
}
.hero__scroll span::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: var(--clr-accent);
	border-radius: 2px;
	animation: scrolldown 1.8s ease-in-out infinite;
}
@keyframes scrolldown {
	0% {
		opacity: 1;
		top: 6px;
	}
	100% {
		opacity: 0;
		top: 22px;
	}
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	transition: var(--transition);
}
.btn--primary {
	background: var(--clr-accent);
	color: #fff;
	box-shadow: 0 4px 24px rgba(245, 130, 10, 0.35);
}
.btn--primary:hover {
	background: var(--clr-accent2);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(245, 130, 10, 0.45);
}
.btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	color: var(--clr-text);
	border: 1px solid var(--clr-border);
}
.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* ===== SECTION ===== */
.section {
	padding: 100px 0;
	position: relative;
}

.section_low {
	padding: 20px 0;
	position: relative;
}

.section__label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--clr-accent);
	margin-bottom: 12px;
}
.section__title {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--clr-white);
	margin-bottom: 48px;
}

/* ===== ABOUT ===== */
.about__grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 60px;
	align-items: start;
}
.about__text p {
	color: var(--clr-muted);
	margin-bottom: 20px;
	font-size: 15px;
}
.about__text p:last-child {
	margin-bottom: 0;
}
.about__quote {
	background: linear-gradient(
		135deg,
		rgba(245, 130, 10, 0.1),
		rgba(245, 130, 10, 0.03)
	);
	border: 1px solid rgba(245, 130, 10, 0.2);
	border-left: 3px solid var(--clr-accent);
	border-radius: var(--radius);
	padding: 28px;
	margin-bottom: 28px;
}
.about__quote p {
	font-size: 15px;
	font-style: italic;
	color: var(--clr-text);
	line-height: 1.6;
}
.about__stats {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.stat {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
}
.stat__num {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	color: var(--clr-accent);
	line-height: 1;
	min-width: 60px;
}
.stat__label {
	font-size: 13px;
	color: var(--clr-muted);
}

/* ===== ADVANTAGES ===== */
.advantages {
	background: var(--clr-surface);
}
.advantages__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse at 80% 50%,
		rgba(245, 130, 10, 0.05) 0%,
		transparent 60%
	);
}
.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.card {
	background: var(--clr-surface2);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
	padding: 32px 24px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(245, 130, 10, 0.06), transparent);
	opacity: 0;
	transition: opacity var(--transition);
}
.card:hover {
	transform: translateY(-6px);
	border-color: rgba(245, 130, 10, 0.25);
}
.card:hover::before {
	opacity: 1;
}
.card__icon {
	font-size: 36px;
	margin-bottom: 20px;
	filter: drop-shadow(0 0 10px rgba(245, 130, 10, 0.4));
}
.card__title {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--clr-white);
	margin-bottom: 12px;
	line-height: 1.3;
}
.card__text {
	font-size: 14px;
	color: var(--clr-muted);
	line-height: 1.6;
}

/* ===== DISPUTES ===== */
.disputes__box {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
	padding: 48px;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}
.disputes__icon {
	font-size: 48px;
	flex-shrink: 0;
	filter: drop-shadow(0 0 12px rgba(245, 130, 10, 0.4));
}
.disputes__content p {
	color: var(--clr-muted);
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.7;
}
.disputes__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}
.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--clr-border);
	border-radius: 50px;
	font-size: 13px;
	color: var(--clr-text);
	transition: var(--transition);
}
.contact-link:hover {
	background: rgba(245, 130, 10, 0.1);
	border-color: rgba(245, 130, 10, 0.3);
	color: var(--clr-accent);
}

/* ===== CTA ===== */
.cta {
	background: var(--clr-surface);
	overflow: hidden;
}
.cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.cta__particle {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}
.cp1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(245, 130, 10, 0.15),
		transparent 70%
	);
	top: -200px;
	right: -100px;
}
.cp2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(30, 91, 255, 0.12),
		transparent 70%
	);
	bottom: -100px;
	left: 0;
}
.cta__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.cta__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	color: var(--clr-white);
	line-height: 1.1;
}
.cta__sub {
	color: var(--clr-muted);
	font-size: 17px;
	margin-bottom: 16px;
}
.cta__info {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 24px 0;
}
.cta__item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
	padding: 20px 28px;
	min-width: 240px;
	transition: var(--transition);
}
.cta__item:hover {
	background: rgba(255, 255, 255, 0.07);
}
.cta__ico {
	font-size: 28px;
}
.cta__item-label {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--clr-muted);
	margin-bottom: 4px;
}
.cta__item-val {
	font-size: 14px;
	font-weight: 500;
	color: var(--clr-white);
}
.cta__item a.cta__item-val:hover {
	color: var(--clr-accent);
}

/* ===== PAGE HERO ===== */
.page-hero {
	padding: calc(var(--header-h) + 80px) 0 60px;
	background: var(--clr-surface);
	border-bottom: 1px solid var(--clr-border);
}
.page-hero__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 800;
	color: var(--clr-white);
	background: linear-gradient(135deg, #fff 30%, var(--clr-accent2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== CONSUMERS ===== */
.consumers__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}
.consumer-card {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
	padding: 36px;
	transition: var(--transition);
}
.consumer-card:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 130, 10, 0.25);
}
.consumer-card__icon {
	font-size: 40px;
	margin-bottom: 20px;
}
.consumer-card h3 {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--clr-white);
	margin-bottom: 12px;
}
.consumer-card p {
	font-size: 14px;
	color: var(--clr-muted);
}

/* ===== CONTACTS PAGE ===== */
.contacts-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}
.contact-block {
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: var(--transition);
}
.contact-block:hover {
	border-color: rgba(245, 130, 10, 0.25);
}
.contact-block__icon {
	font-size: 36px;
	margin-bottom: 8px;
}
.contact-block h3 {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--clr-white);
	margin-bottom: 8px;
}
.contact-block a {
	color: var(--clr-accent);
	font-size: 15px;
	font-weight: 500;
}
.contact-block a:hover {
	color: var(--clr-accent2);
}
.contact-block span {
	font-size: 14px;
	color: var(--clr-muted);
}
.contact-block__note {
	font-size: 12px !important;
	color: var(--clr-muted) !important;
}
.responsible {
	background: linear-gradient(
		135deg,
		rgba(245, 130, 10, 0.08),
		rgba(245, 130, 10, 0.02)
	);
	border: 1px solid rgba(245, 130, 10, 0.2);
	border-radius: var(--radius);
	padding: 40px;
	text-align: center;
}
.responsible h3 {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--clr-muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.responsible p {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--clr-white);
	margin-bottom: 20px;
}
.responsible__contacts {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.responsible__contacts a {
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--clr-border);
	border-radius: 50px;
	font-size: 14px;
	color: var(--clr-accent);
	transition: var(--transition);
}
.responsible__contacts a:hover {
	background: rgba(245, 130, 10, 0.1);
}

/* ===== gas_supply PAGE ===== */
.gas_supply__intro {
	font-size: 17px;
	color: var(--clr-muted);
	max-width: 700px;
	margin-bottom: 48px;
	line-height: 1.7;
}
.gas_supply__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 60px;
}
.gas_supply-item {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	padding: 32px;
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
	transition: var(--transition);
}
.gas_supply-item:hover {
	border-color: rgba(245, 130, 10, 0.2);
	background: var(--clr-surface2);
}
.gas_supply-item__num {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 800;
	color: rgba(245, 130, 10, 0.25);
	min-width: 48px;
	line-height: 1;
	padding-top: 4px;
}
.gas_supply-item__content h3 {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--clr-white);
	margin-bottom: 10px;
}
.gas_supply-item__content p {
	font-size: 14px;
	color: var(--clr-muted);
}
.gas_supply__contact {
	text-align: center;
	padding: 48px;
	background: var(--clr-surface);
	border: 1px solid var(--clr-border);
	border-radius: var(--radius);
}
.gas_supply__contact p {
	font-size: 16px;
	color: var(--clr-muted);
	margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
	background: var(--clr-surface);
	border-top: 1px solid var(--clr-border);
	padding: 60px 0 0;
}
.footer__inner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 60px;
	padding-bottom: 48px;
	align-items: start;
}
.footer__brand p {
	margin-top: 12px;
	font-size: 13px;
	color: var(--clr-muted);
	max-width: 240px;
}
.footer__nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer__nav a {
	font-size: 14px;
	color: var(--clr-muted);
	transition: color var(--transition);
}
.footer__nav a:hover {
	color: var(--clr-accent);
}
.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__contacts a,
.footer__contacts span {
	font-size: 13px;
	color: var(--clr-muted);
	transition: color var(--transition);
}
.footer__contacts a:hover {
	color: var(--clr-accent);
}
.footer__bottom {
	border-top: 1px solid var(--clr-border);
	padding: 20px 0;
}
.footer__bottom .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.footer__bottom span {
	font-size: 12px;
	color: var(--clr-muted);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
	opacity: 1;
	transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.about__grid {
		grid-template-columns: 1fr;
	}
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.about__aside {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.header__inner {
		gap: 12px;
	}
	.btn--cabinet__text {
		display: none;
	}
	.btn--cabinet {
		padding: 8px 10px;
		gap: 0;
	}
	.nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: rgba(10, 13, 20, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 24px;
		gap: 4px;
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
		border-bottom: 1px solid var(--clr-border);
	}
	.nav.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}
	.nav__link {
		padding: 12px 16px;
		width: 100%;
		border-radius: var(--radius-sm);
	}
	.burger {
		display: flex;
	}
	.cards {
		grid-template-columns: 1fr;
	}
	.consumers__grid {
		grid-template-columns: 1fr;
	}
	.contacts-grid {
		grid-template-columns: 1fr;
	}
	.disputes__box {
		flex-direction: column;
		padding: 28px;
	}
	.footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.about__aside {
		grid-template-columns: 1fr;
	}
	.cta__info {
		flex-direction: column;
		align-items: stretch;
	}
	.cta__item {
		min-width: unset;
	}
	.footer__bottom .container {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.hero__title {
		font-size: 52px;
	}
	.hero__actions {
		flex-direction: column;
	}
	.btn {
		justify-content: center;
	}
	.section {
		padding: 64px 0;
	}
}

.map-wrapper {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--clr-border);
	margin-top: 40px;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
}
