.single-blog-post-comments .comment-respond {
	padding: 30px;
	background-color: var(--white);
	margin: 20px 0 30px;
}

.single-blog-post-comments .single-blog-post-comments__heading::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: var(--primary-500);
	z-index: -5;
}

.single-blog-post-comments .single-blog-post-comments__heading::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: var(--accent-500);
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}

.single-blog-post-comments .single-blog-post-comments__heading {
	position: relative;
	font-size: var(--h3-size);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	margin: 0 0 0 0px;
	padding: 10px 0px 10px 24px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	z-index: 10;
}

.single-blog-post-comments .comment-respond .comment-reply-title {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	font-weight: var(--fw-sbold);
}

.single-blog-post-comments .comment-form {
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.single-blog-post-comments .comment-form p {
	margin: 0;
	padding: 0;
}

.single-blog-post-comments .comment-form label {
	font-weight: var(--fw-sbold);
	margin-bottom: 2px;
	color: var(--grey-900);
	display: block;
}

.single-blog-post-comments .comment-form input[type='text'],
.single-blog-post-comments .comment-form input[type='email'],
.single-blog-post-comments .comment-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #d7d7d7;
	font-size: var(--font-xs);
	box-sizing: border-box;
}

.single-blog-post-comments .comment-form textarea {
	max-width: 100%;
	min-width: 100%;
	height: 90px;
}

.single-blog-post-comments .comment-form .form-submit {
	margin-top: 10px;
}

.single-blog-post-comments .comment-form input.submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	background: var(--accent-500);
	color: var(--primary-500);
	padding: 16px 32px 16px 32px;
	font-size: 16px;
	line-height: 16px;
	border-radius: 0px;
	margin: 0;
	text-decoration: none;
	cursor: pointer;
	text-align: center;
	box-shadow: none;
	font-weight: var(--fw-bold);
	padding-top: 12px;
	padding-right: 32px;
	padding-bottom: 12px;
	padding-left: 32px;
	box-shadow: var(--accent-500) 0px 0px 0px;
	transition: box-shadow var(--transition);
	border: 0;
	outline: 0;
}

.single-blog-post-comments .comment-form input.submit:hover {
	box-shadow: var(--accent-500) 0px 0px 8px;
}

.single-blog-post-comments .comment-form input.submit:focus-within {
	text-decoration: underline;
	outline: 1px solid var(--primary-500);
}




.single-blog-post-comments .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-blog-post-comments .comment-list li.comment {
	position: relative;
	background-color: var(--white);
}

.single-blog-post-comments .comment-list li.comment .comment-body {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	padding: 10px 15px 10px 25px;
	margin: 15px 0;
}

.single-blog-post-comments .comment-list li.comment .comment-author {
	font-weight: var(--fw-regular);
	color: var(--primary-500);
	margin-bottom: 5px;
}

.single-blog-post-comments .comment-list li.comment .comment-author .fn {
	font-style: normal;
	font-weight: var(--fw-sbold);
	font-size: 18px;
	list-style-type: none;
	color: var(--grey-900);

}

.single-blog-post-comments .comment-list li.comment .comment-meta,
.single-blog-post-comments .comment-list li.comment .commentmetadata,
.single-blog-post-comments .comment-list li.comment .commentmetadata a {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 16px;
	font-weight: var(--fw-regular);
	margin-bottom: 10px;
}

.single-blog-post-comments .comment-list li.comment p {
	color: var(--grey-900);
	line-height: 26px;
}

.single-blog-post-comments .comment-list li.comment .reply a {
	font-size: 14px;
	color: var(--accent-500);
	text-decoration: none;
	font-weight: var(--fw-medium);
	margin-top: 4px;
}

.single-blog-post-comments .comment-list li.comment .reply a:hover {
	text-decoration: underline;
}

.single-blog-post-comments .comment-list .children {
	margin-left: 25px;
	border-left: 2px solid #f3f2f2;
	padding-left: 0px;
	margin-top: 0px;
	list-style-type: none;
}

.single-blog-post-comments .comment-list .children li.comment {
	background-color: var(--white);
	padding: 5px 15px 5px 10px;
}


footer {
	background: var(--primary-500);
}

.footer__container {
	padding: 80px 0 60px;
}

.footer__items-container {
	display: flex;
	justify-content: space-between;
	gap: 24px 32px;
}

.footer__details-item {
	display: flex;
	flex-direction: column;
	width: auto;
	color: var(--white);
	font-size: var(--font-md);
}

.footer__details-item.footer__details-item--successo p {
	font-size: var(--font-md);
}

.footer__details-item p {
	font-size: var(--font-md);
	margin-top: 0;
}

.footer__details-item:last-child {
	max-width: 180px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.footer__details-item:not(.footer__details-item--menu) {
	flex: 1;
}

.footer__details-item.footer__details-item--menu {
	width: 250px;
}

.footer__widget-area {
	max-width: 400px;
}

.footer__details-item .textwidget p {
	margin-top: 0;
}

.footer__logo {
	display: flex;
	width: 100%;
	height: auto;
}

.footer__logo-img {
	display: flex;
	width: 100%;
	height: auto;
	max-width: 185px;
	margin-bottom: 24px;
}

.footer__widgettitle {
	font-weight: 700;
	color: var(--white);
	font-size: var(--font-md);
	margin: 0;
	margin-bottom: 8px;
}

.footer__company-name {
	margin: 0;
}

.footer-phones,
.footer-email {
	display: flex;
	flex-direction: column;
	margin-top: 24px;
}

.footer-phone a,
.footer-email a,
.footer-link a {
	color: var(--white);
	font-weight: var(--fw-light);
	transition: color var(--transition);
}

.footer-phone a:hover,
.footer-email a:hover,
.footer-link a:hover {
	color: var(--accent-500);
}

.footer-phone,
.footer-email {
	font-weight: var(--fw-medium);
	margin: 0;
	padding: 0;
	font-size: var(--font-md);
	line-height: 20px;
	margin-bottom: 4px;
}




.footer__social-icon-container {
	display: flex;
	gap: 24px;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer__social-icon-container-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.footer__social-icon-container .footer__social-icon-container-item:hover svg * {
	fill: var(--accent-500);
}

.footer__social-icon-container .footer__social-icon-container-item svg * {
	transition: fill var(--transition);
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer ul.menu {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

footer ul.menu li,
footer ul.menu a {
	color: var(--white);
	font-size: var(--font-xs);
	line-height: 30px;
	padding: 0;
	font-weight: 400;
}

footer ul.menu a {
	transition: color var(--transition);
}

footer ul.menu a:hover {
	color: var(--accent-500);
}




.copy {
	position: relative;
	color: var(--white);
	font-size: var(--font-md);
	line-height: 24px;
}

.copy .copy-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	filter: brightness(80%);
	background-color: var(--primary-500);

}

.copy .container {
	display: flex;
	justify-content: space-between;
	align-content: center;
	flex-wrap: wrap;
	gap: 36px;
	background-color: var(--primary-500);
}

.copy .container nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	z-index: 10;
	font-size: var(--font-xs);
}

.copy .container nav a {
	color: var(--white);
	font-weight: var(--fw-regular);
	transition: color var(--transition);
}

.copy .container nav a:hover {
	color: var(--accent-500);
}

.copy .container p {
	position: relative;
	z-index: 10;

	display: flex;
	justify-content: center;
	align-items: center;	font-size: var(--font-xs);

}

.copy a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.copy .container p svg {
	margin-left: 12px;
}



@media (max-width: 1200px) {
	.footer__details-item.footer__details-item--menu {
		width: 185px;
	}

	.footer__details-item:last-child {
		max-width: 160px;
	}

	.footer__logo-img {
		max-width: 160px;
	}

	.footer__items-container {
		gap: 24px;
	}
}

@media (max-width: 1024px) {
	.footer__details-item.footer__details-item--menu {
		width: 160px;
		gap: 16px;
	}

	.footer__logo-img {
		max-width: 140px;
	}
}


@media (max-width: 992px) {
	.copy .container nav {
		margin: 10px auto;
	}

	.footer__items-container {
		flex-direction: column;
	}

	.footer__details-item.footer__details-item--menu {
		width: 100%;
	}

	.footer__widget-area {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer__details-item {
		width: 100%;
	}

	.footer__items-container {
		justify-content: center;
	}

	.footer__details-item:last-child {
		margin: 0 auto;
		justify-content: center;
		align-items: center;
		max-width: unset;
	}

	.footer__container {
		padding: 50px 0 50px;
	}

	.footer__logo-img {
		margin-bottom: 0;
	}

	.footer__details-item {
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.footer__widgettitle {
		margin-bottom: 8px;
	}

	.copy .container {
		flex-direction: column;
		gap: 4px;
		justify-content: center;
		align-items: center;
		padding: 20px 15px;
		text-align: center;
	}

	.copy .container p {
		margin: 0;
		padding: 0;
	}
}