.create {
    padding-top: 50px;
    padding-bottom: 60px;
}
.create.pt0 {
	padding-top: 0px !important;
}
.create.pb0 {
	padding-bottom: 0px !important;
}
.create.notitle {
	padding-top: 60px;
}
.create__title {
    margin-bottom: 40px;
}
.create__text > p {
	display: block;
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.create__text > p:first-child {
	margin-top: 0px;
}
.create__text > p > strong, 
.create__text > p > b {
	color: #000;
	font-weight: 700;
}
.create__text > p > a, 
.create__text-link, 
.create__text > ul li a, 
.create__text > ol li a, 
.create__text-table a {
	color: var(--primary-color);
	border-color: var(--primary-color);
	cursor: pointer;
}
.create__text > p > a:hover, 
.create__text > p > a:active, 
.create__text-link:hover, 
.create__text-link:active, 
.create__text > ul li a:hover, 
.create__text > ul li a:active, 
.create__text > ol li a:hover, 
.create__text > ol li a:active, 
.create__text-table a:hover, 
.create__text-table a:active {
	color: var(--primary-color-active);
	border-color: transparent;
}
.create__text > ul {
	display: table;
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
}
.create__text > ul:first-child {
	margin-top: 0px;
}
.create__text > ul li {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px calc(14px + 10px);
	position: relative;
}
.create__text > ul li:first-child {
	margin-top: 0px;
}
.create__text > ul li:before {
	content: "";
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	top: 8px;
	left: 0px;
	width: 9px;
	height: 9px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
}
.create__text > ol {
	display: block;
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	counter-reset: list;
}
.create__text > ol:first-child {
	margin-top: 0px;
}
.create__text > ol li {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px calc(14px + 10px);
	position: relative;
}
.create__text > ol:has(li:nth-child(10)) li {
	padding-left: calc(24px + 10px);
}
.create__text > ol li:first-child {
	margin-top: 0px;
}
.create__text > ol li:before {
	content: counter(list) ". ";
	counter-increment: list;
	display: inline-block;
	vertical-align: top;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 14px;
	color: var(--primary-color);
	font-size: inherit;
	line-height: inherit;
	font-weight: 700;
	text-align: left;
}
.create__text > ol:has(li:nth-child(10)) li:before {
	width: 24px;
	text-align: right;
}
.create__list {
    grid: none/repeat(3, 1fr);
    gap: 30px;
}
.create__text + .create__list {
	margin-top: 40px;
}
.create__item {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    transition: var(--transition-duration);
}
.create__item:hover {
    box-shadow: 0 0 50px rgba(181, 186, 191, 0.2);
}
.create__item:hover .create__img-btn {
    opacity: 1;
    visibility: visible;
}
.create__img {
	position: relative;
	width: 100%;
	height: 269px;
    margin-bottom: 25px;
    border-radius: 4px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}
.create__img > a {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	border: none !important;
	font-size: 0px !important;
	line-height: 0px !important;
	text-decoration: none !important;
}
.create__img-btn {
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 60%;
}
.create__name {
    margin-bottom: 12px;
    font-weight: 700;
}
.create.create_peregorodki_types .create__name {
    margin-bottom: 0px !important;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
	text-align: center;
}
.create__name a {
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.create__name a:hover {
	color: var(--primary-color-active);
	border-color: transparent;
}
.create__desc {
    margin-bottom: 20px;
}
.create.create_peregorodki_typeopen .create__desc {
	margin-bottom: 0px !important;
}
.create__desc ul {
    flex-direction: column;
}
.create__desc ul li {
    position: relative;
    padding-left: 16px;
}
.create__desc ul li:last-of-type {
    margin-bottom: 0;
}
.create__desc ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}
.create__desc a {
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.create__desc a:hover {
	color: var(--primary-color-active);
	border-color: transparent;
}
.create__spisok {
	display: block;
	margin: 0px 0px 20px 0px; 
	padding: 0px 0px 0px 0px;
	position: relative;
}
.create__desc + .create__spisok {
	margin-top: -5px;
}
.create__spisok ul {
	display: block;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px 0px;
	position: relative;
}
.create__spisok ul li {
	display: block;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px calc(7px + 10px);
	position: relative;
}
.create__spisok ul li:first-child {
	margin-top: 0px;
}
.create__spisok ul li:before {
	content: "";
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	top: 8px;
	left: 0px;
	width: 7px;
	height: 7px;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
}
.create__spisok ul li a {
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.create__spisok ul li a:hover {
	color: var(--primary-color-active);
	border-color: transparent;
}
.create__others {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.create__btn {
    width: 167px;
}
.create__price {
    font-size: 20px;
    font-weight: 500;
}
.create__price sup {
    font-size: 0.6em;
}
@media screen and (min-width: 1576px) {
	.create__list {
		gap: 30.5px;
	}
}
@media screen and (min-width: 1221px) and (max-width: 1575px) {
	.create__img-btn {
		width: 70%;
	}
}
@media screen and (max-width: 1220px) {
    .create__list {
        gap: 20px;
    }
    .create__item {
        padding: 20px;
    }
    .create__img {
		height: 210px;
        margin-bottom: 20px;
    }
    .create__name {
        font-size: 22px;
		margin-bottom: 10px;
    }
	.create.create_peregorodki_types .create__name {
		font-size: 20px;
		line-height: 26px;
	}
	.create__desc {
		line-height: 21px;
		margin-bottom: 14px;
	}
	.create__spisok {
		line-height: 21px;
		margin-bottom: 14px;
	}
    .create__others {
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
    }
    .create__btn {
		order: 2;
		margin-top: 15px;
		width: 100%;
    }
	.create__price {
		order: 1;
	}
}
@media screen and (max-width: 992px) {
    .create {
        padding-top: 35px;
        padding-bottom: 45px;
    }
	.create.notitle {
		padding-top: 45px;
	}
    .create__title {
        margin-bottom: 30px;
    }
	.create__text > p {
		margin-top: 18px;
	}
	.create__text > ul {
		margin-top: 18px;
	}
	.create__text > ul li {
		margin-top: 8px;
	}
	.create__text > ul li:before {
		top: 7px;
	}
	.create__text > ol {
		margin-top: 18px;
	}
	.create__text > ol li {
		margin-top: 8px;
	}
	.create__desc {
		margin-bottom: 12px;
	}
	.create__spisok {
		margin-bottom: 12px;
	}
    .create__price {
        font-size: 18px;
    }
    .create__img {
		height: 180px;
        margin-bottom: 20px;
    }
	.create__img-btn {
		width: 80%;
	}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
    .create__name {
        font-size: 20px;
		line-height: 24px;
    }
	.create.create_peregorodki_types .create__name {
		font-size: 18px;
		line-height: 24px;
	}
}
@media screen and (max-width: 767px) {
    .create__list {
        grid: none/repeat(2, 1fr);
    }
	.create__text + .create__list {
		margin-top: 30px;
	}
}
@media screen and (max-width: 670px) {
    .create__list {
        grid: none/repeat(1, 1fr);
    }
    .create__item {
        max-width: 408px;
    }
}
@media screen and (max-width: 480px) {

}