* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1.5;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	outline: none;
}

:root {
	--black: #0f1923;
	--white: #acb9ca;
	--bg-dark: #1a2b3c;
	--light: #EBEBEB;
	--accent: #989bff;
	--accent-hover: #C4B4FC;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: radial-gradient(
		circle at 105% 50%,
		#9856CD 2%,
		#432394 10%,
		#08071B 43%,
		#050517 100%
	);
}

main {
	flex: 1 0 auto;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

section + section {
	margin-top: 7%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin: 0.5rem 0 0.5rem;
	text-align: center;
	color: #fff;
}

h1 {
	font-weight: 600;
	font-size: 3rem;
}

h2, h3 {
	font-weight: 600;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.2rem;
}

p, span {
	color: var(--white);
}

a {
	color: var(--accent);
	text-decoration: none;
}

a, span {
	font-size: inherit;
}
button {
	background: var(--light);
	margin: 1.5rem 0 0.5rem;
	padding: 10px 18px;
	border: 1px solid var(--light);
	border-radius: 50px;
}

button:hover, button:focus {
	background: var(--accent-hover);	
	transition: all 0.2s ease;
}

button.redirect {
	background: transparent;
	color: var(--light);
}

section .tag {
	text-transform: uppercase;
	color: var(--accent-hover);
	text-align: center;
	margin: 0 auto;
	display: block;
}

.interactive-block {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.card {
	display: block;
	padding: 32px;
	border-radius: 24px;

	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);

	border: 1px solid rgba(255, 255, 255, 0.15);

	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.description {
	font-size: 17px;
	color: var(--white);
	max-width: 600px;
	text-align: center;
	margin: 0 auto;
}

.popup {
	display: none;
}

.popup__wrapper {
	background-color: #000000B5;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	align-items: center;
	justify-content: center;
	z-index: 12;
	display: none;
	cursor: pointer;
	display: none;
}

.close-popup {
	color: #fff;
	font-size: 45px;
	font-weight: 700;
	position: absolute;
	right: -60px;
	top: -15px;
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transform: rotate(45deg);
	cursor: pointer;
}
.formats__block {
	display: flex;
	gap: 20px;
}

input, textarea {
	background: transparent;
	border-radius: 15px;
	padding: 15px;
	border: 1px solid #ffffff38;
	margin-bottom: 20px;
	color: #fff;
}

form {
	display: flex;
	flex-direction: column;
	max-width: 450px;
	width: 100%;
}

form button[type=submit] {
	margin-top: 5px;
}

.offer {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.offer form {
	margin-top: 5%;
}

.offer p {
	text-align: center;
}

.consent.agreement, .consent.agreement * {
	font-size: 0.8rem;
	line-height: 0.9rem;
	max-width: 400px;
	margin: 3% auto 0;
}

.cta .description {
	margin-bottom: 5%;
}

@media (max-width: 600px) {
	h1 {
		font-size: 2.1rem;
		line-height: 2rem;
	}
	h2 {
		font-size: 1.8rem;
		line-height: 1.7rem;
	}
}

.breadcrumbs {
	margin-bottom: 24px;
}

.breadcrumbs__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs__item {
	display: flex;
	align-items: center;
	font-size: 0.8rem;
	color: #888;
}

.breadcrumbs__item:not(:last-child)::after {
	content: '/';
	margin-left: 4px;
	color: #ccc;
}

.breadcrumbs__link {
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumbs__link:hover {
	color: var(--black);
}

.breadcrumbs__item--current {
	color: var(--black);
	font-weight: 500;
	max-width: 60wv;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}