@charset "UTF-8";
.grid-cards {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: var(--gap-inner) 0;
}
.grid-cards > * {
		flex: 0 0 auto;
		width: 100%;
}
@media only screen and (min-width: 1200px) {
		.grid-cards > *.wid50 {
				width: calc((100% - var(--gap-inner)) / 2);
		}
}
.grid-cards-autofill > * {
		width: 100%;
}
@media only screen and (min-width: 900px) and (max-width: 1199.99px) {
		.grid-cards-autofill > * {
				width: calc((100% - var(--gap-inner)) / 2);
		}
		.grid-cards-autofill > *:nth-child(odd):last-child {
				width: 100%;
		}
}
@media only screen and (min-width: 1200px) {
		body:not(.style-izhevsk) .grid-cards-autofill > * {
				width: calc((100% - var(--gap-inner)) / 2);
		}
		body:not(.style-izhevsk) .grid-cards-autofill > *:nth-child(odd):last-child {
				width: 100%;
		}
		.style-izhevsk .grid-cards-autofill > * {
				width: calc((100% - var(--gap-inner) * 2) / 3);
		}
		.style-izhevsk .grid-cards-autofill > *:last-child:nth-child(3n - 2) {
				width: 100%;
		}
		.style-izhevsk .grid-cards-autofill > *:last-child:nth-child(3n - 1), .style-izhevsk .grid-cards-autofill > *:nth-last-child(2):nth-child(3n - 2) {
				width: calc((100% - var(--gap-inner)) / 2);
		}
}
.style-novodev .card {
		color: var(--title);
		--title: var(--accent);
}
.card .text > *:first-child {
		margin-top: 0 !important;
}
.card .text > *:last-child {
		margin-bottom: 0 !important;
}
.card-pattern {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		border-radius: var(--radius);
		overflow: hidden;
		backface-visibility: hidden;
		pointer-events: none;
}
.card-pattern:before {
		content: '';
		position: absolute;
		background: var(--pattern);
}
.style-geo .card-pattern:before {
		mask-image: url("../img/themes/geo.svg");
		mask-size: var(--geo) auto;
		mask-position: 0 0;
}
.style-novodev.style-geo .card-pattern:before {
		mask-image: url("../img/themes/geo2.svg");
		mask-position: 50% 0;
}
.style-plant .card-pattern:before {
		mask-image: contain;
		mask-repeat: no-repeat;
}
.style-plant .card-pattern:before {
		width: 625px;
		height: 625px;
}
.style-plant.style-izhevsk .card-pattern:before {
		width: 666px;
		height: 666px;
}
.style-plant .card-pattern-tl:before {
		mask-position: 0 0;
}
.style-plant .card-pattern-tr:before {
		mask-position: 100% 0;
}
.style-plant .card-pattern-bl:before {
		mask-position: 0 100%;
}
.style-plant .card-pattern-br:before {
		mask-position: 100% 100%;
}
.style-plant .card-pattern-tl:before {
		mask-image: url("../img/themes/plant-small-tl.svg");
}
.style-plant .card-pattern-tr:before {
		mask-image: url("../img/themes/plant-small-tr.svg");
}
.style-plant .card-pattern-br:before {
		mask-image: url("../img/themes/plant-small-br.svg");
}
.style-plant .card-pattern-bl:before {
		mask-image: url("../img/themes/plant-small-bl.svg");
}
.style-plant.style-izhevsk .card-pattern-tl:before {
		mask-image: url("../img/themes/plant-big-tl.svg");
}
.style-plant.style-izhevsk .card-pattern-tr:before {
		mask-image: url("../img/themes/plant-big-tr.svg");
}
.style-plant.style-izhevsk .card-pattern-br:before {
		mask-image: url("../img/themes/plant-big-br.svg");
}
.style-plant.style-izhevsk .card-pattern-bl:before {
		mask-image: url("../img/themes/plant-big-bl.svg");
}
.card > *:not(.card-pattern) {
		position: relative;
}
.card .title {
		color: var(--title);
		font: 800 32px/1.2 var(--font-title);
		font-variant-numeric: lining-nums;
		margin: 0;
		transition: opacity 0.4s ease;
		letter-spacing: -0.011em;
}
@media only screen and (max-width: 699.99px) {
		.card .title {
				font-weight: bold;
				font-size: 24px;
		}
}
.card .title a {
		text-decoration: none;
		color: inherit;
		transition: opacity 0.4s ease;
}
@media (pointer:fine) {
		.card .title a:hover, a.card:hover .title {
				opacity: 0.5;
		}
}
.card .icon {
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: var(--icon);
		position: relative;
}
.card .icon > * {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
}
.card .image-circle {
		position: absolute;
		border-radius: 50%;
}
.card .image-circle img {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		object-fit: cover;
		object-position: center;
}