.project-single{
	display: flex;
	gap: 30px;
}
.project-single__sidebar{
	width: 300px;
	flex-shrink: 0;
}
.project-single__content{
	display: flex;
	flex-direction: column;
	width: calc(100% - 300px);
	padding-left: 30px;
}




.project-info {
	position: relative;
	margin-bottom: 25px;
}
.project-info__main {
	border-radius: var(--border-radius-xl) var(--border-radius-lg) 0 0;
	background: var(--gradient-primary);
	text-align: center;
	color: #fff;
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}

.project-info__main:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
}
.project-info__container{
	width: 360px;
	max-width: 100%;
	padding: 29px 30px 14px;
	position: relative;
	margin: 0 auto;
}
.project-info__rating{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 72px;
	height: 72px;
	padding: 2px 0 0;
	background: #fff;
	border: 3px solid;
	border-radius: 50%;
	font-weight: 600;
	font-size: var(--font-size-xs);
	line-height: 12px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	position: absolute;
	top: 8px;
	left: 8px;
	color: var(--text-muted);
	box-shadow: var(--shadow-button);
	transition: all var(--transition-normal);
}

.project-info__rating:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.project-info__rating span{
	display: block;
	font-family: 'Tomorrow';
	font-weight: 500;
	font-size: 28px;
	line-height: 26px;
	
}
.project-info_red .project-info__rating{
	border-color: #CC6363;
	
}
.project-info_gray .project-info__rating{
	border-color: #7298A6;
	
}
.project-info_blue .project-info__rating{
	border-color: #437B94;
	
}

.project-info_red .project-info__rating span{
    color: #CC6363;
}
.project-info_gray .project-info__rating span{
    color: #7298A6;
}
.project-info_blue .project-info__rating span{
    color: #437B94;
}
.project-info__image {
	width: 202px;
	height: 202px;
	border: 3px solid #fff;
	background: #fff;
	border-radius: 50%;
	margin: 0 auto 12px;
	box-shadow: var(--shadow-light);
	transition: all var(--transition-normal);
}

.project-info__image:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.project-info__image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.project-info__name {
	font-weight: 800;
	font-size: var(--font-size-2xl);
	line-height: 1.3;
	margin-bottom: 8px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.project-info__status {
	display: inline-block;
	padding: 6px 16px 5px;
	border: 2px solid #95BDCC;
	border-radius: var(--border-radius-md);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	font-weight: 700;
	font-size: var(--font-size-xs);
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #95BDCC;
	margin-bottom: 16px;
	box-shadow: var(--shadow-light);
	transition: all var(--transition-normal);
}

.project-info__status:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(149, 189, 204, 0.3);
}
.project-info_red .project-info__status{
	border-color: #CC6363;
	color: #CC6363;
}
.project-info_grey .project-info__status{
	border-color: #95BDCC;
	color: #95BDCC;
}
.project-info_blue .project-info__status{
	border-color: #32ABA4;
	color: #32ABA4;
}
.project-info__list{
	font-size: 15px;
	line-height: 21px;
	text-align: left;
	color: #f5f7f9eb;
}
.project-info__list li{
	position: relative;
	padding-left: 20px;
	margin-bottom: 4px;
}
.project-info__list li:before{
	content: '';
	display: block;
	width: 11px;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.73609 7.84288L0.161085 4.35628C-0.0536949 4.14681 -0.0536949 3.80718 0.161085 3.59769L0.938884 2.8391C1.15366 2.62961 1.50193 2.62961 1.71671 2.8391L4.125 5.18782L9.28329 0.157101C9.49807 -0.0523671 9.84634 -0.0523671 10.0611 0.157101L10.8389 0.915689C11.0537 1.12516 11.0537 1.46479 10.8389 1.67428L4.51391 7.8429C4.29911 8.05237 3.95087 8.05237 3.73609 7.84288Z' fill='%23437B94'/%3E%3C/svg%3E%0A") no-repeat 0 0 / 100% auto;
	position: absolute;
	top: 6px;
	left: 0;
}
.project-contacts {
	padding: 20px 35px 20px 28px;
	background: #fff;
	border: 2px solid rgba(43,76,90,0.15);
	border-top: none;
	border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
	box-shadow: var(--shadow-card);
	position: relative;
}

.project-contacts:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	pointer-events: none;
	border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}
.project-contacts__item {
	display: flex;
	padding: 10px 0;
	transition: all var(--transition-fast);
	border-radius: var(--border-radius-sm);
}

.project-contacts__item:hover {
	background: rgba(67, 123, 148, 0.05);
	padding-left: 8px;
	margin-left: -8px;
}
.project-contacts__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	padding-right: 10px;
	flex-shrink: 0;
	transition: all var(--transition-fast);
}

.project-contacts__item:hover .project-contacts__icon {
	transform: scale(1.1);
}
.project-contacts__icon svg{
	fill: #437B94;
}
.project-contacts__content {
	width: calc(100% - 25px);
}
.project-contacts__name {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #616E77;
	margin-bottom: 4px;
}

.project-contacts__name strong{
    color: #2c2c2c;
}
.project-contacts__link span{
	display: inline-block;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	color: #437B94;
	border-bottom: 1px solid rgba(67,123,148,0.3);
	cursor: pointer;
}
.project-contacts__link span:hover{
	border-color: transparent;
}
.project-content{
	padding: 44px 41px 25px;
	background: #fff;
	border-radius: 20px;
	margin-bottom: 40px;
}
.project-content__complaint {
	margin: -44px -41px 29px;
}
.project-content__complaint-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px 20px 8px;
	border-radius: 20px 20px 0 0;
	background: #CF4633;
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	color: #fff;
}
.project-content__complaint-title i{
	display: block;
	line-height: 0;
	margin: 0 12px 0 6px;
}
.project-content__complaint-text{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F5F7F9;
	padding: 10px 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #111;
	text-decoration: none;
}
.project-content__complaint-text i{
	display: block;
	line-height: 0;
	margin-left: 10px;
}
.project-content__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	color: #111;
	margin-bottom: 24px;
}
.project-content__title span{
	color: #437B94;
}
.project-content__body{
	margin-bottom: 30px;
}
.project-content__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(97,110,119,0.1);
	padding: 25px 0 0;
}
.project-content__rating{
	display: flex;
	align-items: center;
}
.project-content__subtitle {
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #616E77;
	margin-right: 19px;
}
.project-content__share {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 15px;
}
.project-content__social {
	display: flex;
}
.project-complaint {
	position: relative;
	margin-bottom: 40px;
}
.project-complaint:before{
	content: '';
	display: none;
	height: 70px;
	border-radius: 0 0 10px 10px;
	background: rgba(97,110,119,0.1);
	box-shadow: 0px 0px 50px -25px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(100px);
	position: absolute;
	left: 50px;
	right: 50px;
	bottom: -5px;
}
.project-complaint__inner {
	padding: 25px 30px 12px;
	position: relative;
	background: #fff;
	border-radius: 20px;
}
.project-complaint__title{
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	color: #CF4633;
	background: linear-gradient(90deg, rgba(207, 70, 51, 0.1) 0%, rgba(207, 70, 51, 0.005) 100.47%);
	padding: 5px 30px;
	margin: 0 -30px 15px;
}
.project-complaint__item {
	padding: 25px 30px 19px;
	background: #F5F7F9;
	border-radius: 10px;
	margin-bottom: 20px;
}
.project-complaint__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100.47%);
	border-left: 2px solid #CF4633;
	padding: 6px 30px 6px 28px;
	margin: 0 -30px 8px;
}
.project-complaint__number{
	font-family: 'Tomorrow';
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #CF4633;
}
.project-complaint__date {
	display: flex;
	align-items: center;
	font-family: 'Tomorrow';
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	text-align: right;
	color: #616E77;
}
.project-complaint__date i{
	display: inline-block;
	line-height: 0;
	margin-right: 10px;
}
.project-complaint__date svg{
	fill: rgba(97,110,119,0.4);
}
.project-complaint__content{
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 0 0 0 2px;
}
.project-complaint__text {
	flex-grow: 1;
	font-size: 15px;
	line-height: 25px;
}
.project-complaint__image {
	flex-shrink: 0;
	margin: 5px 0px 0 20px;
	position: relative;
}
.project-complaint__image a{
	width: 115px;
	height: 115px;
	display: block;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}
.project-complaint__image a:not(:first-child){
	display: none;
}
.project-complaint__image a:before{
	content: '';
	display: block;
	background: linear-gradient(90deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
	opacity: 0.4;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}
.project-complaint__image span{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(67, 123, 148, 0.7);
	backdrop-filter: blur(3px);
	font-family: 'Tomorrow';
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	pointer-events: none;
}
.project-complaint__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 5px;
}
.project-complaint__more {
	display: none;
	font-weight: 700;
	font-size: 13px;
	line-height: 30px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #437B94;
}
.project-complaint__more span{
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
.project-complaint__more i{
	display: block;
	line-height: 0;
	margin-left: 12px;
}
.project-complaint__more svg{
	fill: #437B94;
}
.project-complaint__item.has-more .project-complaint__content {
	height: 108px;
	overflow: hidden;
}
.project-complaint__item.has-more .project-complaint__content:not(.opened):after{
	content: '';
	display: block;
	height: 50px;
	background: linear-gradient(to bottom, rgba(245,247,249,0) 0%,rgba(245,247,249,1) 100%);
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	pointer-events: none;
}
.project-complaint__item.has-more .project-complaint__content.opened{
	height: auto;
	overflow: visible;
}
.project-complaint__item.has-more .project-complaint__more{
	display: block;
}
.project-comment {
	position: relative;
	margin-bottom: 40px;
}
.project-comment:before{
	content: '';
	display: block;
	height: 70px;
	border-radius: 0 0 10px 10px;
	background: linear-gradient(104.12deg, rgba(255, 255, 255, 0.48) 10.05%, rgba(255, 255, 255, 0.126) 89.95%);
	box-shadow: 0px 0px 50px -25px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(100px);
	position: absolute;
	left: 55px;
	right: 55px;
	bottom: -5px;
}
.project-comment__inner{
	padding: 44px 40px 30px;
	background: #fff;
	border-radius: 20px;
	position: relative;
}
.project-comment__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 26px;
}
.comment-form {
	margin-bottom: 20px;
}
.comment-form__handler {
	display: flex;
	align-items: center;
	height: 55px;
	padding: 5px 30px;
	border-radius: 5px;
	background: #F5F7F9;
	font-size: 16px;
	line-height: 24px;
	color: #616E77;
	cursor: pointer;
}
.comment-form__handler i{
	display: block;
	line-height: 0;
	margin: 0 16px 4px 0;
}
.comment-form__handler i svg{
	fill: rgba(97,110,119,0.3);
}
.comment-form__body {
	display: none;
}
.comment-form__message {
	display: flex;
	background: #F5F7F9;
	border-radius: 5px;
	padding: 20px 25px 15px;
	margin-bottom: 10px;
}
.comment-form__textarea{
	position: relative;
	width: calc(100% - 110px);
}
.comment-form__textarea textarea{
	width: 100%;
	height: 96px;
	min-height: 96px;
	border: none;
	padding: 2px 35px;
	margin: 0;
	background: none;
	font-size: 16px;
	line-height: 24px;
	resize: none;
	overflow: hidden;
}
.comment-form__textarea i{
	position: absolute;
	top: 6px;
	left: 6px;
}
.comment-form__textarea i svg{
	fill: rgba(97,110,119,0.3);
}
.comment-form__file{
	width: 150px;
	position: relative;
}
.comment-form__inputs {
	display: flex;
}
.comment-form__input {
	flex-grow: 1;
	margin-right: 10px;
	position: relative;
}
.comment-form__input input{
	width: 100%;
	height: 50px;
	border: none;
	padding: 0 35px 4px 60px;
	margin: 0;
	background: #F5F7F9;
	border-radius: 5px;
	font-size: 16px;
	line-height: 24px;
}
.comment-form__input i{
	position: absolute;
	top: 15px;
	left: 31px;
}
.comment-form__input i svg{
	fill: rgba(97,110,119,0.3);
}
.comment-form__textarea textarea::placeholder,
.comment-form__input input::placeholder{
	color: #616E77;
	opacity: 1;
}
.comment-submit{
	min-width: 173px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 10px 20px;
	background: #F7C71B;
	border: none;
	box-shadow: 0px 50px 30px rgba(0, 0, 0, 0.05), 0px 30px 30px rgba(0, 0, 0, 0.03), 0px 10px 15px rgba(0, 0, 0, 0.02);
	border-radius: 5px;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	flex-shrink: 0;
	color: #111;
	-webkit-appearance: none;
}
.comment-submit svg{
	fill: #111;
	margin-left: 10px;
}
.comment-form-cookies-consent{
	display: none;
}
.reply-cancel, .logged-in-as{
	flex-shrink: 0;
	font-weight: 700;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 10px 0;
}
.reply-cancel a, .logged-in-as a{
	color: #437B94;
	text-decoration: none;
}
.commentlist{
	position: relative;
}
.commentlist:after{
	content: '';
	display: block;
	background: #fff;
	height: 2px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
}
.commentlist ul li{
	padding-left: 71px;
}
.commentlist ul ul li{
	padding-left: 0;
}
.commentlist ul li .comment-block:before{
	content: '';
	display: block;
	width: 31px;
	height: 31px;
	background: url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.4'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.2929 19.2929C24.6834 18.9024 25.3166 18.9024 25.7071 19.2929L30.7071 24.2929C31.0976 24.6834 31.0976 25.3166 30.7071 25.7071L25.7071 30.7071C25.3166 31.0976 24.6834 31.0976 24.2929 30.7071C23.9024 30.3166 23.9024 29.6834 24.2929 29.2929L28.5858 25L24.2929 20.7071C23.9024 20.3166 23.9024 19.6834 24.2929 19.2929Z' fill='%23616E77'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 0C1.55228 0 2 0.447715 2 1V21C2 21.7957 2.31607 22.5587 2.87868 23.1213C3.44129 23.6839 4.20435 24 5 24H30C30.5523 24 31 24.4477 31 25C31 25.5523 30.5523 26 30 26H5C3.67392 26 2.40215 25.4732 1.46447 24.5355C0.526784 23.5979 0 22.3261 0 21V1C0 0.447715 0.447715 0 1 0Z' fill='%23616E77'/%3E%3C/g%3E%3C/svg%3E ") no-repeat 0 0 / 100% auto;
	position: absolute;
	top: 20px;
	left: -51px;
}
.comment-block {
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid rgba(97,110,119,0.1);
}
.comment-block__head {
	display: flex;
	margin-bottom: 11px;
}
.comment-block__avatar {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}
.comment-block__avatar img{
	display: block;
	border-radius: 50%;
}
.comment-block__info {
	margin: 2px 0 0 16px;
}
.comment-block__author {
	font-weight: 600;
	font-size: 19px;
	line-height: 20px;
	margin-bottom: 6px;
}
.comment-block__date{
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #616E77;
}
.comment-block__content {
	display: flex;
	align-items: flex-end;
}
.comment-block__text{
	flex-grow: 1;
}
.comment-block__text-content{
	font-size: 18px;
	line-height: 30px;
}
.comment-block__text-preview{
	display: none;
	align-items: center;
	font-weight: 700;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #437B94;
	cursor: pointer;
}
.comment-block__text-preview i{
	display: block;
	line-height: 0;
	margin-left: 12px;
}
.comment-block__text-preview svg{
	fill: #437B94;
}
.comment-block__text_has-more .comment-block__text-content{
	height: 100px;
	overflow: hidden;
	mask-image: linear-gradient(black 0%, black 60px, transparent);
	mask-mode: alpha;
	-webkit-mask-image: linear-gradient(black 0%, black 60px, transparent);
	-webkit-mask-mode: alpha;
}
.comment-block__text_has-more .comment-block__text-preview{
	display: inline-flex;
}
.comment-block__reply {
	flex-shrink: 0;
	font-weight: 700;
	font-size: 13px;
	line-height: 20px;
	text-align: right;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #437B94;
	margin: 0 0 3px 30px;
	cursor: pointer;
}
.comment-block__reply a{
	color: #437B94;
	text-decoration: none;
}
.comment-list__more{
	text-align: center;
	padding-top: 10px;
}
.comment-list__more span{
	display: inline-block;
	padding: 10px 27px;
	background: #437B94;
	border-radius: 5px;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}
.comment-form-attachment__label,
.comment-form-attachment__file-size-notice,
.comment-form-attachment__file-types-notice{
	display: none !important;
}
.comment-form__file button{
	bottom: -1px;
	left: auto;
	right: -13px;
}
.comment-form__file .bk-list{
	padding: 0 0 37px 0;
}
.popup-mistrust {
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: all 0.2s;
	z-index: 100;
}
.popup-mistrust.opened{
	visibility: visible;
	opacity: 1;
}
.popup-mistrust__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #111;
	opacity: 0.5;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.popup-mistrust__window {
	position: relative;
	width: 470px;
	max-width: calc(100% - 30px);
	padding: 20px 20px 15px;
	background: #fff;
	box-shadow: 0px 50px 30px rgba(0, 0, 0, 0.05), 0px 30px 30px rgba(0, 0, 0, 0.03), 0px 10px 15px rgba(0, 0, 0, 0.02);
	border-radius: 20px;
	transform: translateY(-20px);
	transition: transform 0.2s;
}
.popup-mistrust.opened .popup-mistrust__window{
	transform: translateY(0px);
}
.popup-mistrust__close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	background: #E7EAEC;
	border-radius: 50%;
	position: absolute;
	top: 13px;
	right: 13px;
	cursor: pointer;
}
.popup-mistrust__close svg{
	fill: #111;
}
.popup-mistrust__title {
	font-weight: 700;
	font-size: 44px;
	line-height: 48px;
	text-align: center;
	color: #437B94;
	margin-bottom: 13px;
}
.popup-mistrust__text {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	background: linear-gradient(90deg, #2B4C5A 0%, #203A43 50%, #2C5364 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: 2px;
}
.popup-mistrust__status {
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #8BA5AE;
	margin-bottom: 13px;
}
.popup-mistrust_red .popup-mistrust__status{
	color: #CF4633;
}
.popup-mistrust__top {
	display: flex;
	align-items: center;
	padding: 18px 28px 18px 25px;
	margin: 0 -20px 15px;
	background: rgba(67,123,148,0.1);
}
.popup-mistrust__top-text {
	font-size: 15px;
	line-height: 20px;
	margin-right: 20px;
}
.popup-mistrust__top-btn {
	flex-shrink: 0;
}
.popup-mistrust__top-btn a{
	display: inline-flex;
	align-items: center;
	height: 44px;
	padding: 5px 22px 8px;
	background: #437B94;
	box-shadow: 0px 50px 30px rgba(0, 0, 0, 0.05), 0px 30px 30px rgba(0, 0, 0, 0.03), 0px 10px 15px rgba(0, 0, 0, 0.02);
	border-radius: 5px;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	white-space: nowrap;
	text-decoration: none;
	color: #fff;
}
.popup-mistrust__top-btn i{
	display: block;
	line-height: 0;
	margin-left: 10px;
}
.popup-mistrust__top-btn svg{
	fill: #fff;
}
.popup-mistrust__btn {
	text-align: center;
}
.popup-mistrust__btn span{
	display: inline-block;
	background: rgba(231,234,236,0.7);
	border-radius: 5px;
	padding: 5px 21px;
	font-size: 15px;
	line-height: 20px;
	text-transform: lowercase;
	color: #616E77;
	cursor: pointer;
	user-select: none;
}
.project-stick{
	display: none;
}

.post-body blockquote{
  padding: 23px 41px 10px 85px;
  margin: 25px -41px;
}

.post-body blockquote::before {
    top: 25px;
    left: 40px;
}
/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1310px){
	
}
@media only screen and (max-width: 1190px){
	
}
@media only screen and (max-width: 992px){
	.project-single{
		flex-direction: column;
	}
	.project-single__sidebar{
		width: 100%;
	}
	.project-info{
		margin-bottom: 15px;
	}
	.project-info__container{
		padding: 29px 25px 15px;
	}
	.project-info__rating{
		top: 10px;
		left: 10px;
	}
	.project-info__image{
		margin: 0 auto 13px;
	}
	.project-info__status{
		margin-bottom: 10px;
	}
	.project-info__list {
		font-size: 17px;
		line-height: 21px;
	}
	.project-single__sidebar .aside-links{
		display: none;
	}
	.project-single__content{
		width: 100%;
		padding: 0;
	}
	.project-content{
		border-radius: 0;
		padding: 25px 15px;
		margin: 0 -15px 20px;
	}
	.project-content__complaint{
		margin: -25px -15px 26px;
	}
	.project-content__complaint-title{
		font-size: 24px;
		line-height: 30px;
		text-align: center;
		padding: 9px 20px 11px;
		border-radius: 0;
	}
	.project-content__complaint-title i{
		display: none;
	}
	.project-content__complaint-text{
		padding: 15px 20px;
	}
	.project-content__body{
		margin-bottom: 21px;
	}
	.project-content__title{
		font-size: 34px;
		line-height: 40px;
		margin-bottom: 18px;
	}
	.project-content__title i{
		background: linear-gradient(180deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		text-fill-color: transparent;
	}
	.project-comment{
		margin-bottom: 0;
	}
	.project-comment:before{
		display: none;
	}
	.project-comment__inner{
		border-radius: 0;
		padding: 26px 15px 20px;
		margin: 0 -15px;
	}
	.project-comment__title{
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 14px;
	}
	.comment-form{
		margin-bottom: 0;
	}
	.comment-form__message{
		padding: 12px 20px;
		margin-bottom: 15px;
	}
	.comment-form__message{
		flex-direction: column;
	}
	.comment-form__textarea{
		width: 100%;
		padding-bottom: 20px;
	}
	.comment-form__textarea textarea{
		height: 151px;
		min-height: 151px;
		padding: 0;
	}
	.comment-form__textarea i{
		display: none;
	}
	.comment-form__file{
		width: 100%;
	}
	.comment-form__inputs{
		flex-direction: column;
	}
	.comment-form__input{
		width: 100%;
		margin: 0 0 15px;
	}
	.comment-form__input input{
		padding: 0 35px 4px 49px;
		background-position: 20px 16px;
	}
	.comment-form__file .bk-list{
		padding: 0 0 31px 0;
	}
	.comment-form__file button {
		bottom: 0;
		right: -5px;
	}
	.commentlist ul li{
		padding-left: 35px;
	}
	.commentlist ul li .comment-block::before {
		content: '';
		display: block;
		width: 26px;
		height: 26px;
		top: 13px;
		left: -35px;
	}
	.comment-block{
		
	}
	.comment-block__head{
		margin-bottom: 4px;
	}
	.comment-block__avatar{
		width: 35px;
		height: 35px;
	}
	.comment-block__info{
		margin: -2px 0 0 10px;
	}
	.comment-block__author{
		font-size: 14px;
		line-height: 18px;
	}
	.comment-block__date{
		font-size: 10px;
		line-height: 10px;
	}
	.comment-block__content{
		flex-direction: column;
		align-items: flex-start;
	}
	.comment-block__text_has-more .comment-block__text-content{
		height: 220px;
		-webkit-mask-image: linear-gradient(black 0%, black 160px, transparent);
	}
	.comment-block__reply{
		margin: 6px 0 0;
	}
	.comment-list__more{
		padding-top: 0;
		margin-top: -1px;
		position: relative;
	}
	.comment-block__text_has-more + .comment-block__reply{
		display: none;
	}
	

	.popup-mistrust__close {
		top: 10px;
		right: 10px;
	}
	.popup-mistrust__title {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 1px;
	}
	.popup-mistrust__text{
		font-size: 17px;
		line-height: 25px;
		margin-bottom: 0;
	}
	.popup-mistrust__status{
		font-size: 17px;
		line-height: 25px;
	}
	.popup-mistrust__top{
		padding: 10px 20px 9px;
		margin-bottom: 16px;
	}
	.popup-mistrust__top-text{
		margin-right: 15px;
	}
}
@media only screen and (max-width: 650px){
	.project-content__bottom{
		flex-direction: column;
		align-items: center;
		padding: 14px 0 0;
	}
	.project-content__subtitle{
		letter-spacing: 0;
		margin-right: 14px;
	}
	.post-ratings img, .post-ratings-loading img, .post-ratings-image img{
		width: 37px !important;
	}
	.project-content__rating{
		margin-bottom: 11px;
	}
	.project-content__rating .project-content__subtitle{
		margin-right: 16px;
	}
	.project-complaint{
		margin-bottom: 20px;
	}
	.project-complaint:before{
		display: block;
	}
	.project-complaint__inner{
		border-radius: 0;
		padding: 15px 15px 5px;
		margin: 0 -15px;
	}
	.project-complaint__title{
		font-size: 26px;
		line-height: 30px;
		text-align: center;
		padding: 16px 15px 19px;
		margin: 0 -15px 15px;
	}
	.project-complaint__container{
		width: 500px;
		max-width: 100%;
		margin: 0 auto;
	}
	.project-complaint__item {
		padding: 15px 15px 14px;
		margin-bottom: 15px;
	}
	.project-complaint__head{
		padding: 6px 15px 6px 13px;
		margin: 0 -15px 13px;
	}
	.project-complaint__content{
		height: auto;
		flex-direction: column-reverse;
		padding: 0;
		overflow: visible;
	}
	.project-complaint__content:not(.opened):after{
		display: none;
	}
	.project-complaint__image{
		width: calc(100% + 4px);
		margin: 0 -2px 11px;
	}
	.project-complaint__image a{
		width: 100%;
		height: 164px;
	}
	.project-complaint__item.has-more .project-complaint__content{
		height: auto;
		overflow: visible;
	}
	.project-complaint__item.has-more .project-complaint__content:not(.opened):after{
		display: none;
	}
	.project-complaint__item.has-more .project-complaint__content:not(.opened) .project-complaint__text{
		height: 148px;
		overflow: hidden;
		position: relative;
	}
	.project-complaint__content:not(.opened) .project-complaint__text:after{
		content: '';
		display: block;
		height: 50px;
		background: linear-gradient(to bottom, rgba(245,247,249,0) 0%,rgba(245,247,249,1) 100%);
		position: absolute;
		top: 100px;
		left: 0;
		right: 0;
	}
	.project-complaint__more i{
		margin-left: 10px;
	}
}
@media only screen and (max-width: 500px){
	.project-stick{
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		right: 0;
		background: #FFFFFF;
		box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.05);
		border-top: 1px solid #E7EAEC;
		z-index: 95;
	}
	.project-stick__container {
		display: flex;
		margin: 0 30px 0 15px;
	}
	.project-stick__item {
		width: 50%;
		padding: 2px 15px 6px;
		font-weight: 500;
		font-size: 16px;
		line-height: 20px;
		color: #333;
	}
	.project-stick__item > span{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 40px;
		padding: 5px 10px;
		cursor: pointer;
	}
	.project-stick__item > a{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 40px;
		padding: 5px 10px;
		text-decoration: none;
		color: #333;
	}
	.project-stick__item i{
		display: block;
		line-height: 0;
		flex-shrink: 0;
		margin-right: 10px;
	}
	.project-stick__item > a span{
		display: block;
		font-family: 'Tomorrow';
		font-weight: 400;
		font-size: 14px;
		line-height: 20px;
		color: #616E77;
		margin-left: 5px;
	}
	.project-stick__item svg{
		fill: #F7C71B;
	}
	.site-footer_project .footer-main{
		margin-bottom: 45px;
	}
}

@media only screen and (max-width: 411px){
	.project-info__container{
		width: 100%;
	}
	.project-info__image{
		width: 182px;
		height: 182px;
	}
	.project-info__list{
		font-size: 16px;
	}
	.project-content__complaint-title{
		padding: 14px 20px 16px;
		font-size: 22px;
		line-height: 25px;
	}
	.project-content__title{
		font-size: 32px;
		line-height: 35px;
		margin-bottom: 13px;
	}
	.project-complaint__image a{
		height: 154px;
	}
	.project-content__title{
		margin-bottom: 17px;
	}
	.popup-mistrust__top {
		padding: 10px 15px 9px 17px;
	}
	.popup-mistrust__top-text{
		font-size: 14px;
		line-height: 20px;
	}
	.popup-mistrust__top-btn a{
		font-size: 14px;
		line-height: 20px;
		padding: 8px 22px;
	}
	.project-stick__container {
		margin: 0 25px 0 10px;
	}
}
@media only screen and (max-width: 383px){
	.project-info__main{
		border-radius: 35px 5px 0 0;
	}
	.project-info__list{
		font-size: 15px;
	}
	.project-content__complaint-title{
		font-size: 21px;
	}
	.project-content__title {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 14px;
	}
	.post-gallery__slide a{
		height: 424px;
	}
	.project-complaint__image a{
		height: 144px;
	}
	.comment-block{
		padding: 15px 0 13px;
	}
	.comment-block__head{
		margin-bottom: 8px;
	}
	.comment-block__info{
		margin: 1px 0 0 7px;
	}
	.comment-block__author{
		font-size: 16px;
		line-height: 19px;
	}
	.popup-mistrust__window{
		padding: 20px 15px 15px;
	}
	.popup-mistrust__top {
		padding: 14px 15px 13px;
		margin: 0 -15px 15px;
	}
	.popup-mistrust__top-text{
		font-size: 13px;
		line-height: 18px;
	}
	.popup-mistrust__top-btn a{
		padding: 8px 16px;
	}
	.project-stick__container{
		margin: 0 20px 0 5px;
	}
	.project-stick__item{
		font-size: 15px;
		padding: 3px 5px 5px;
	}
	.project-stick__item > a,
	.project-stick__item > span{
		height: 35px;
	}
	
}
@media only screen and (max-width: 359px){
	.project-info{
		margin: 0 -5px 15px;
	}
	.aside-project{
		margin: 0 -5px 20px;
	}
	.project-info__main{
		border-radius: 35px 20px 0 0;
	}
	.project-info__container{
		padding: 29px 20px 15px;
	}
	.project-contacts{
		padding: 15px 20px 14px 18px;
	}
	.project-content__complaint-title {
		padding: 14px 10px 16px;
		font-size: 19px;
	}
	.project-complaint__inner{
		padding: 15px 10px 5px;
	}
	.project-complaint__item{
		margin-bottom: 10px;
	}
	.project-complaint__head {
		padding: 6px 10px 6px 13px;
		margin: 0 -15px 13px;
	}
	.project-complaint__title{
		padding: 16px 5px 19px;
	}
	.project-complaint__image {
		width: calc(100% + 14px);
		margin: 0 -7px 11px;
	}
	.project-complaint__image a{
		height: 134px;
	}
	.project-comment {
		margin-bottom: 5px;
	}
	.project-comment__inner{
		padding: 26px 10px 20px;
	}
	.comment-form {
		margin-bottom: 6px;
	}
	.comment-block {
		padding: 19px 0;
	}
	.comment-block__head{
		margin-bottom: 5px;
	}
	.comment-block__author {
		font-size: 14px;
		line-height: 18px;
	}
	.comment-block__info{
		margin: 0px 0 0 10px;
	}
	.comment-block__text{
		font-size: 17px;
	}
	.popup-mistrust__window{
		max-width: calc(100% - 20px);
	}
	.popup-mistrust__title {
		margin-bottom: 2px;
	}
	.popup-mistrust__text{
		font-size: 15px;
	}
	.popup-mistrust__top {
		padding: 13px 10px;
		margin: 0 -15px 15px;
	}
	.popup-mistrust__top-text {
		margin-right: 8px;
	}
	.popup-mistrust__top-btn a {
		padding: 8px 13px;
		font-size: 13px;
	}
	
}

/* Современные анимации для страницы проекта 2025 года */
@keyframes slideInProject {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInProjectContent {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleInProjectImage {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Анимации появления элементов */
.project-single__sidebar {
	animation: slideInProject 0.8s ease-out;
}

.project-single__content {
	animation: fadeInProjectContent 0.8s ease-out 0.2s both;
}

.project-info__image {
	animation: scaleInProjectImage 0.6s ease-out 0.4s both;
}

.project-info__rating {
	animation: scaleInProjectImage 0.5s ease-out 0.6s both;
}

/* Hover эффекты для интерактивности */
.project-info__main {
	backface-visibility: hidden;
	will-change: transform;
}

.project-contacts {
	backface-visibility: hidden;
	will-change: transform;
}

/* Улучшенные переходы для мобильных устройств */
@media (hover: none) {
	.project-info__rating:hover {
		transform: none;
	}
	
	.project-info__image:hover {
		transform: none;
	}
	
	.project-info__status:hover {
		transform: none;
	}
	
	.project-contacts__item:hover {
		background: none;
		padding-left: 0;
		margin-left: 0;
	}
	
	.project-contacts__item:hover .project-contacts__icon {
		transform: none;
	}
}

/* Адаптивные стили для шаринга */
@media only screen and (max-width: 768px) {
	.project-content__bottom {
		flex-direction: column;
		gap: 20px;
		align-items: stretch;
	}
	
	.project-content__share {
		margin-left: 0;
		justify-content: center;
		gap: 10px;
	}
	
	.social-likes_visible {
		gap: 6px;
	}
	
	.social-likes__button {
		width: 38px;
		height: 38px;
	}
	
	.social-likes__button svg {
		transform: scale(1);
	}
	
	.social-likes__button:hover svg {
		transform: scale(1.1);
	}
}
