<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.contacts {
	margin-top: -3px;
	background: var(--contacts-background);
}

.contacts__container {
	min-height: 90vh;
	padding-top: 50px;
}

.contacts__title {
	text-align: center;
}

.contacts__content {
	margin-top: 50px;
	display: flex;
	gap: 50px;
	align-items: stretch;
}

.contacts__info {
	display: flex;
	flex: 0 0 30%;
	background: var(--contacts-info-background-color);
	padding: 20px;
	border-radius: 20px;
	align-items: center;
}

.contacts__info-list {
	gap: 10px;
	display: flex;
	flex-direction: column;
}

.contacts__map {
	flex: 1 0;
	width: 100%;
}

.contacts__info-item {
	padding-left: 45px;
	position: relative;
}

.contacts__info-item:not(:first-child) {
	margin-top: 10px;
}

.contacts__info-item-img {
	width: 32px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 991.98px) {
	.contacts__content {
		flex-direction: column;
		align-items: center;
	}

	.contacts__info-list {
		gap: 20px;
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		align-items: center;
	}

	.contacts__info-item:not(:first-child) {
		margin-top: 0;
	}
}

@media (max-width: 479.98px) {
	.contacts__info-list {
		flex-flow: column nowrap;
		align-items: start;
	}
}

@media (max-width: 991.98px) or (max-height: 770px) {
	.contacts__container {
		min-height: auto;
	}
}

@media (min-width: 992px) and (min-height: 630px) and (max-height: 770px) {
	.contacts__container {
		min-height: 100vh;
		padding-top: 0;
	}
}
</pre></body></html>