/*! Unitbud — blog (split from style.css) */
/* Запис блогу */

.article__section {
	margin-top: 0 !important;
	padding: 25px 0 35px 0;
}

.article__title {
	font-family: 'Days One', sans-serif;
	font-size: 24px;
	font-weight: 400;
	text-decoration: none;
	margin: 0 0 15px 0;
	display: block;
}

.blog__item--header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}

.blog__item--author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.author__avatar {
	height: 75px;
	width: 75px;
	border-radius: 50%;
	border: solid 1px #7ACF55;
	margin-right: 16px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.author__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.author__name {
	text-decoration: none;
	color: #000000;
}

.author__position {
	color: #767676;
	font-size: 10px;
}

.blog__item--details {
	font-size: 14px;
	margin-top: 0;
}

.blog__item--details span {
	color: var(--kmnd-body-color-accent);
}

.article__image {
	width: 100vw;
	height: 100%;
	max-width: fit-content;
	margin-left: -20px;
	margin-bottom: 30px;
	text-decoration: none;
	display: block;
	position: relative;
}

.article__article {
	margin: 25px 0;
}

.article__article p {
	font-family: 'Murecho', sans-serif;
	letter-spacing: normal;
}

.article__subtitle {
	font-family: 'Days One', sans-serif;
	font-size: 20px;
	margin: 25px 0;
	color: #000;
	font-weight: 700;
}

.article__subtitle strong {
	color: #000;
}

.article__article h3 {
	font-family: 'Days One', sans-serif;
	font-size: 18px;
	color: #000;
	font-weight: 400;
	margin: 15px 0 15px;
}

.article__article ul,
.article__article ol {
	padding: 0 0 0 20px;
	margin: 10px 0;
}

.article__article ul {
	list-style: none;
}

.article__article ul li {
	position: relative;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 5px 0;
}

.article__article ul li:before {
	content: "";
	display: block;
	position: absolute;
	top: 9px;
	left: -20px;
	width: 8px;
	height: 8px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #77d14d;
}

.article__article ol li::marker {
	color: #7acf55;
	font-weight: 600;
	font-size: 18px;
}

.article__article a {
	font-family: 'Days One', sans-serif;
	color: #77d14d;
}

.article__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 20px;
}

.tags__item,
.tags__item.post__under {
	background: #7ACF55;
	padding: 2px 10px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	cursor: pointer;
	margin-right: 10px;
	margin-top: 10px;
	border: solid 1px #7ACF55;
	text-decoration: none;
}

.article__share {
	margin-top: 25px;
	display: flex;
	justify-content: space-between;
}

.article__controls-title {
	font-size: 1rem;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 15px;
}

.article__share-row {
	display: flex;
	align-items: center;
}

.article__share-row a {
	text-decoration: none;
	margin-right: 15px;
	transition: all 0.5s ease;
}

.article__share-row img {
	height: 42px;
	width: auto;
	display: block;
}

/* Архів блогу */

.blog__section {
	margin-bottom: 25px;
}

.blog__title {
	font-family: 'Days One', sans-serif;
	font-weight: 400;
	font-size: 28px;
	text-transform: uppercase;
	text-shadow: 0 4px 4px rgb(0 0 0 / 25%);
	color: #000000;
	margin: 0 0 25px 0;
}

.blog__main {
	display: flex;
	flex-direction: column-reverse;
}

.blog__content {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 99;
}

.blog__item--title {
	font-family: 'Days One', sans-serif;
	font-weight: 400;
	text-decoration: none;
	margin: 0 0 15px 0;
	display: block;
	color: #000;
}

.blog__separator {
	width: 100vw;
	padding: 0px 0 25px 0;
	border-top: 1px solid #999;
}

.blog__separator:last-child {
	border-top: none;
	padding: 0;
}

.blog__item {
	margin: 15px 0 40px 0;
}

.blog__item a {
	text-decoration: none;
	display: flex;
}

.blog__item--button {
	font-family: 'Days One', sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-transform: uppercase;
	color: #000;
	border: 3px solid #000;
	padding: 15px 25px;
	width: fit-content;
	text-decoration: none;
	transition: all 0.5s ease;
}

.blog__item--button:hover {
	border: 3px solid #000000;
	background: #000000;
	color: #ffffff;
}

.blog__item--image {
	width: 100%;
	height: auto;
	margin-bottom: 5px;
}

.blog__item--tags {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.blog__mark {
	margin-top: 18px;
	margin-right: 0;
	display: inline-flex;
	padding: 4px 19px;
	border: solid 1px #000000;
	color: #000000;
	background: none;
}

.tags__item:last-of-type {
	margin-right: 0;
}

.blog__item--text {
	margin-bottom: 20px;
	font-size: 14px;
}

.blog__tag-button {
	font-family: "Murecho", sans-serif;
	color: #757777;
	border: 1px solid #757777;
	padding: 10px 15px;
	margin: 15px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 10px;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	text-transform: capitalize;
}

.blog__tag-button.active {
	border-color: var(--kmnd-body-color-accent);
	color: var(--kmnd-body-color-accent);
}

.blog__tag-button.active svg path {
	stroke: var(--kmnd-body-color-accent);
}

.blog__tag-content.toggle__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	overflow: visible;
	max-height: 100%;
	margin-top: 0;
	height: 0;
	opacity: 0;
	padding: 0;
}

.blog__tag-content.toggle__content.active {
	opacity: 1;
}

.blog__tags--items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
}

.blog__tags--item {
	display: inline-flex;
	padding: 5px 15px;
	margin: 0;
	border: solid 1px #000000;
	color: #000000;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	text-transform: uppercase;
	font-size: 0.75rem;
	cursor: pointer;
}

.blog__tags--item.blog__tags--item-checked {
	border: solid 1px #7ACF55;
	background: #7ACF55;
	color: #F5F5F3;
}

.tags__item--remove {
	color: #000000;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.15;
	cursor: pointer;
	border: none;
	margin-top: 25px;
	display: none;
}

.tags__item--remove-mobile {
	background: #7ACF55;
	width: 100vw;
	margin-left: -15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	min-height: 50px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #FFFFFF;
	font-size: 0.875rem;
}

.tags__item--remove-mobile img {
	width: 24.52px;
	height: 24px;
}

.tags__item--remove-mobile:after {
	content: '';
	display: block;
	width: 24.52px;
	height: 24px;
}

@media (min-width: 992px) {
	.blog__title {
		font-size: 50px;
		margin: 30px 0;
	}

	.blog__main {
		flex-direction: row;
	}

	.blog__column:nth-of-type(1) {
		width: 70%;
		border-right: solid 1px #999999;
		padding-right: 30px;
	}

	.blog__column:nth-of-type(2) {
		flex: 1;
		padding-left: 30px;
	}

	.blog__item {
		margin: 0px 0 50px 0;
	}

	.blog__item--title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.blog__tag-button {
		text-transform: uppercase;
		color: #000;
		font-size: 1.5rem;
		margin: 0 0 15px;
		padding: 0;
		border: none;
		pointer-events: none;
	}

	.blog__tag-button svg {
		display: none;
	}

	.blog__tag-content.toggle__content {
		opacity: 1;
		height: 100%;
	}

	.tags__item--remove {
		display: flex;
		gap: 15px;
	}

	.tags__item--remove-mobile {
		display: none;
	}
}



.error__section {
	padding: 325px 0 65px;
	background-position: top center;
	position: relative;
	margin-top: -70px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.error__section .container {
	position: relative;
	z-index: 1;
}

.error__bg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.error__text {
	width: 100%;
	max-width: 325px;
	margin-bottom: 35px;
	font-size: 18px;
	position: relative;
	color: #F5F5F3;
	line-height: 1.5;
	text-align: center;
}

.error__text img {
	position: absolute;
	width: 56.23px;
	height: 56.86px;
	bottom: 0;
	left: 90%;
	transform: translate(-100%, 100%);
}


.error__link {
	margin-bottom: 25px;
	color: #F5F5F3;
	text-align: center;
}

.error__link a {
	color: inherit;
	font-size: 14px;
	border-bottom: 1px solid currentColor;
	will-change: opacity;
	text-transform: uppercase;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.error__link a:hover {
	border-bottom: 1px solid currentColor;
	opacity: 0.5;
}

.error__btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.error__btn .btn {
	margin-right: 0;
	width: 200px;
	font-size: 16px;
	display: flex;
	justify-content: center;
	text-align: center;
	color: #77D14D;
	background: none;
	padding: 15px;
	border-radius: 50px;
	will-change: opacity;
	border: solid 3px #77D14D;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.error__btn a.btn {
	color: #F5F5F3;
	background: #7ACF55;
}

@media (min-width: 576px) {
	.error__section {

		padding: 400px 0 115px;
	}

	.error__bg {
		display: none;
	}

	.error__text {
		font-size: 24px;
		margin: 0 auto 40px;
		max-width: 600px;
	}

	.error__text img {
		bottom: 30px;
		left: 85%;
		width: 104.57px;
		height: 104.93px;
	}

	.error__link {
		margin-bottom: 65px;
	}

	.error__link a {
		font-size: 20px
	}

	.error__btn {
		flex-direction: row;
	}

	.error__btn .btn {
		margin-right: 0;
		margin-bottom: 9px;
	}

	.error__btn .btn:last-of-type {
		margin-bottom: 0;
	}
}

@media (min-width: 992px) {
	.error__section {
		margin-top: -140px;
	}
}

@media (min-width: 2000px) {
	.error__section {
		padding: 700px 0 175px;
	}
}