<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rules__wrap {
	display: flex;
	margin: 0 0 72px;
}

.rules__top {
	background-image: url(image/first.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-color: var(--grey);
	padding: 32px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	min-width: 464px;
	max-width: 464px;
}

.rules-top__titles {
	margin-bottom: 32px;
}

.rules__top h3,
.rules__top h4,
.rules__top p {
	margin: 0;
}

.rules__top h3 {
	margin-bottom: 16px;
}

.rules__top h4{
	margin-bottom: 32px;
}

.rules-top__text {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.rules-top__text p+p {
	margin-left: 32px;
}

.rules__bottom {
	margin-left: 24px;
	display: grid;
	grid-auto-columns: 1fr 1fr 1fr;
	grid-auto-rows: 1fr 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 24px;
	max-width: 952px;
	width: 100%;
}

.rules-bottom__item {
	padding: 32px;
	border: 1px dashed var(--primary2);
	border-radius: 16px;
}

.rules-top__text,
.rules-item__top {
	display: flex;
}

.rules-item__top {
	align-items: center;
	margin-bottom: 24px;
}

.rules-item__image {
	height: 72px;
	width: 72px;
	overflow: hidden;
	margin-right: 16px;
	display: flex;
	background-color: var(--grey);
	border-radius: 72px;
	padding: 16px;
}

.rules-item__image img {
	width: 100%;
}

.rules-item__name {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
}

.rules-top__btn.btn{
	padding: 0;
	margin-top: auto;
}

.rules-top__btn a{
	color: var(--white);
	text-decoration: none;
	width: 100%;
	text-align: center;
	padding: 0 22px;
}

@media (max-width:1200px) {
	.rules__wrap{
		flex-direction: column;
	}

	.rules__bottom{
		margin-left: 0;
		margin-top: 24px;
		max-width: 100%;
	}

	.rules-top__btn.btn{
		margin-top: 32px;
	}

	.rules__top{
		max-width: 100%;
		min-width: 100%;
	}
}

@media (max-width:800px) {
	.rules__bottom{
		grid-auto-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 16px;
	}
}</pre></body></html>