@charset "UTF-8";
.policy .policy__header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 100px 0;
}
.policy .policy__header h2 {
	color: #fff;
	text-align: center;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 110px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	margin-bottom: 40px;
	word-wrap: break-word; /* Разрешает перенос слов */
	word-break: break-word; /* Подстраховка для старых браузеров */
	-webkit-hyphens: auto;
	hyphens: auto; /* Добавляет переносы, если доступно */
	overflow-wrap: break-word;
}
@media (max-width: 1280px) {
	.policy .policy__header h2 {
		font-size: 70px;
	}
}
@media (max-width: 768px) {
	.policy .policy__header h2 {
		font-size: 50px;
	}
}
@media (max-width: 476px) {
	.policy .policy__header h2 {
		font-size: 32px;
	}
}
@media (max-width: 768px) {
	.policy .policy__header {
		margin: 80px 0;
	}
}
.policy h3 {
	color: #fff;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	margin-bottom: 40px;
}
.policy h4 {
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 10px;
	margin-top: 15px;
}
.policy p {
	color: #fff;
	font-variant-numeric: lining-nums proportional-nums stacked-fractions ordinal;
	font-family: Inter, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}
.policy p span {
	font-size: 30px;
	font-weight: 700;
}
.policy p a {
	color: inherit;
	text-decoration: underline;
}
.policy ul {
	color: #fff;
	font-variant-numeric: lining-nums proportional-nums stacked-fractions ordinal;
	font-family: Inter, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}
.policy ul li {
	list-style: disc;
	list-style-position: inside;
}
.policy ul .italic {
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	line-height: 30px;
}
.policy .wrapper {
	position: relative;
	padding: 34px 40px;
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(94, 94, 94, 0.2);
	border-radius: 50px;
	z-index: 1;
	-webkit-backdrop-filter: blur(27px);
	backdrop-filter: blur(27px);
	overflow: hidden;
}
.policy .wrapper .title {
	color: #fff;
	font-family: "Dela Gothic One", sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	margin-bottom: 20px;
}
.policy .wrapper .info p {
	color: rgba(255, 255, 255, 0.5);
	font-family: Inter, sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
}
.policy .wrapper .info span {
	color: #fff;
}
.policy .wrapper .info a {
	color: rgba(255, 255, 255, 0.5);
}
.policy .wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: linear-gradient(90deg, #c02c30, #fbbb49, #b75af5, #6d78f2);
	border-radius: 50px;
	padding: 1px;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-button {
	padding: 30px 55px;
	cursor: pointer;
	display: flex;
	border-radius: 100px;
	border: 5px solid rgba(255, 177, 112, 0.39);
	background: #ff7400;
	box-shadow: 0px 0px 48.8px 14px rgba(255, 157, 0, 0.16);
	align-items: center;
	transition: background 0.2s ease-in-out;
}
.dropdown-button.active {
	background-color: #9f4800;
}
.dropdown-button.active svg {
	transform: rotate(180deg);
}
.dropdown-button svg {
	transition: transform 0.2s ease-in-out;
}
.dropdown-button span {
	margin-right: 60px;
	color: #fff;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 768px) {
	.dropdown-button {
		padding: 20px 35px;
	}
	.dropdown-button span {
		margin-right: 30px;
	}
}

.dropdown-button:hover {
	background-color: #9f4800;
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	background-color: #f9f9f9;
	min-width: 200px;
	overflow: hidden;
	display: none; /* Скрыто по умолчанию */
	opacity: 0; /* Начальная прозрачность */
	transform-origin: top;
	border-radius: 24px;
	border: 1px solid #ff7400;
	padding: 16px;
	background: #000;
}

.dropdown-menu a {
	display: block;
	padding: 16px;
	color: #fff;
	border-radius: 8px;
	font-family: Inter, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
	background: rgba(255, 116, 0, 0.15);
	color: #ff7501;
}

.dropdown-menu a:last-child {
	border-bottom: none;
} /*# sourceMappingURL=policy.css.map */
