:root {
	--primary-color: #005efe;
	--text-color: #fff;
	--grid-width: 68.7vw;
	--spacing-standard: 1.5em;
}

body {
	margin: 0;
	font: 1rem/1.5rem sans-serif;
	background: linear-gradient(
		90deg,
		var(--primary-color) 0%,
		#c2d9ff 50%,
		var(--primary-color) 100%
	);
}

main {
	background: var(--primary-color);
	margin: 1rem;
	padding: 2em 1em;
	border-radius: 8px;
	border: 1px solid #ffffff44;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: lightgray;
}

a:hover {
	color: #0ff;
	transition: all 0.3s ease;
}

.flex,
div,
span {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-standard);
}

.column,
div {
	flex-direction: column;
}

.inline {
	display: inline;
}

.text-center {
	text-align: center;
}

.gap-0 {
	gap: 0 !important;
}

.gap-4 {
	gap: 4px !important;
}

.white {
	color: var(--text-color);
}

.b {
	font-weight: bold;
}

.text-upper {
	text-transform: uppercase;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.text-7xl {
	font-size: 3rem;
	line-height: 1;
}

.mobile-column-reverse {
	display: flex;
	flex-direction: column-reverse;
	gap: var(--spacing-standard);
}

.video-row {
	display: block;
}

.video-title {
	font-size: 14px;
	color: var(--text-color);
	text-align: center;
	margin-bottom: 0.1rem;
	font-style: italic;
}

.main__enter {
	padding: 0.5rem;
	background: linear-gradient(
		0deg,
		rgba(156, 0, 14, 1) 0%,
		rgba(154, 14, 23, 1) 36%,
		rgba(216, 89, 93, 1) 54%,
		rgba(233, 16, 37, 1) 76%
	);
}

.main__enter:hover {
	box-shadow: 0 0 1rem blue;
	transition: all 0.3s ease;
	color: #0ff;
}

.pointer {
	cursor: pointer;
}

address {
	gap: 0 !important;
	padding: 2rem 1rem;
}

.banner {
	z-index: 1;
}

.cities {
	flex-wrap: wrap;
}

.places {
	display: block;
	width: var(--grid-width);
	overflow: hidden;
	background: var(--primary-color);
}

.products_title {
	margin: 3em auto;
	max-width: var(--grid-width);
}

.margin {
	margin: auto;
}

i,
em {
	font-style: normal;
}

footer {
	display: flex;
	flex-direction: column;
	gap: 3em;
	color: var(--text-color);
	background: #000;
	padding: 3em 1.5em 8em;
}
.hide {
	display: none !important;
}
.word__bkt {
	align-items: stretch;
}

.word__bkt > section {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.word__bkt label {
	font: 700 15px sans-serif;
	text-transform: uppercase;
}

.word__bkt > section > div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: minmax(15px, auto);
	row-gap: 6px;
	column-gap: var(--spacing-standard);
	margin: 8px 0;
	align-items: center;
}

.word__bkt > section > div > a {
	text-wrap: pretty;
	font: 12px/16px sans-serif;
}

.footer__copy {
	max-width: 300px;
	justify-content: flex-start;
	text-align: center;
	margin: auto;
}

.footer__copy b {
	font: 700 32px sans-serif;
	text-wrap: pretty;
}

#cities {
	gap: 8px var(--spacing-standard);
}

@keyframes marquee {
	from {
		translate: 100%;
	}
	to {
		translate: -100%;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.show {
		animation: show ease 0.35s;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
		opacity: 0;
	}

	@keyframes show {
		0% {
			opacity: 0;
			transform: translateY(-20em);
		}
		50% {
			transform: translateY(0.3em);
		}
		100% {
			transform: translateY(0);
			opacity: 1;
		}
	}

	.show * {
		animation: show__inside ease 0.7s;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
		animation-delay: 0.35s;
		opacity: 0;
	}

	@keyframes show__inside {
		0% {
			opacity: 0;
		}
		50% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

	.place__bkt {
		animation: marquee 66s linear infinite;
	}
}

@media (min-width: 930px) {
	main {
		width: var(--grid-width);
		min-width: 640px;
		margin: 0 auto;
		padding: 2rem 0 0;
		border: 0;
		border-radius: 0;
	}

	section {
		padding: 0 6rem 4rem;
	}

	.word__bkt > section > div {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: minmax(15px, auto);
		row-gap: 6px;
	}

	.video-row {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: center;
	}

	.video-title {
		margin-bottom: 0.25rem;
	}

	.mobile-column-reverse {
		flex-direction: column;
	}

	.mainFooter {
		display: flex;
		width: var(--grid-width);
		margin: 0 auto;
		background: linear-gradient(0deg, #005efe00 0%, var(--primary-color) 90%);
		height: 4rem;
	}

	.text-7xl {
		font-size: 4.5rem;
		line-height: 1;
	}

	.word__bkt > i > div {
		grid-template-columns: repeat(6, 1fr);
	}

	footer {
		flex-direction: row;
	}

	.footer__copy {
		border-right: 1px solid;
		padding-right: 3em;
		margin: 0;
	}

	.word__bkt {
		width: var(--grid-width);
	}
}

@media (min-width: 1200px) {
	.word__bkt > section > div {
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: minmax(15px, auto);
		row-gap: 6px;
	}
}
