.home-head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
	padding: 20px 70px;
	margin: 0 -70px 30px;
}
.home-head__left{
	display: flex;
	align-items: center;
}
.home-head__title{
	font-weight: 800;
	font-size: var(--font-size-3xl);
	line-height: 1.2;
	margin: 0 61px 6px 0;
	background: linear-gradient(90deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.home-head__btn a{
	display: inline-block;
	padding: 9px 25px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(67, 123, 148, 0.3);
	border-radius: 5px;
	text-decoration: none;
}
.home-head__btn span{
	background: linear-gradient(90deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 600;
	font-size: var(--font-size-sm);
	line-height: 1.2;
}
.home-head__btn svg{
	margin-left: 10px;
	fill: url(#icon-gradient);
}
.home-head__btn a:hover{
	background: var(--blue-title-color);
	border: 1px solid var(--blue-title-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(67, 123, 148, 0.3);
}
.home-head__btn a:hover span{
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: #fff;
	background-clip: unset;
	text-fill-color: #fff;
}
.home-head__btn a:hover svg{
	fill: #fff;
}
.home-head__arrows{
	display: flex;
}
.home-head__prev,.home-head__next{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	box-shadow: var(--shadow-button);
	border-radius: 50%;
	padding-left: 2px;
	margin-left: 20px;
	flex-shrink: 0;
	cursor: pointer;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.home-head__prev:before,.home-head__next:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	opacity: 0;
	transition: opacity var(--transition-fast);
}
.home-head__prev:hover,.home-head__next:hover{
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 30px rgba(67, 123, 148, 0.4);
}

.home-head__prev:hover{
	transform: translateY(-3px) scale(1.05) scale(-1);
}

.home-head__prev:hover:before,.home-head__next:hover:before{
	opacity: 1;
}
.home-head__prev svg,.home-head__next svg{
	fill: #fff;
}
.home-head__prev{
	transform: scale(-1);
}
.home-projects{
	padding: 45px 70px 0;
	background: var(--light-blue-color);
	box-shadow: inset 0px -10px 50px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	margin-bottom: 40px;
}
.home-projects .home-head__title span{
	background: linear-gradient(90deg, var(--blue-title-gradient1) 0%, var(--blue-title-gradient2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.home-projects__slider:not(.slick-initialized){
	visibility: hidden;
	height: 300px;
}
.home-projects__slider{
	margin: 0 -70px 0 -12px;
}
.home-projects__slide{
	padding: 0 12px 50px;
}
.home-projects__container{
	display: none;
}
.project-home{
	min-width: 335px;
	max-width: 100%;
	padding: 20px 25px 25px;
	background: #fff;
	box-shadow: var(--shadow-card);
	position: relative;
	border-radius: var(--border-radius-lg);
	transition: all var(--transition-normal);
	transform: translateY(0);
}

.project-home:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.project-home:after{
	content: '';
	display: block;
	height: 50px;
	border-radius: 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);
	position: absolute;
	left: 30px;
	right: 15px;
	bottom: -5px;
	clip-path: polygon(0 calc(100% - 5px), 100% calc(100% - 5px), 100% 100%, 0 100%);
}
.project-home__number{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	box-shadow: var(--shadow-button);
	border-radius: 50%;
	font-family: 'Tomorrow';
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 20px;
	left: -12px;
	transition: all var(--transition-fast);
}

.project-home:hover .project-home__number {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(67, 123, 148, 0.4);
}
.project-home__head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 9px;
}
.project-home__headline{
	display: flex;
	align-items: center;
}
.project-home__image{
	width: 70px;
	height: 70px;
	flex-shrink: 0;
	margin-right: 20px;
	transition: all var(--transition-normal);
}

.project-home__image img{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--shadow-light);
	transition: all var(--transition-normal);
}

.project-home:hover .project-home__image img {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.project-home__content .project-home__image{
	display: none;
}
.project-home__title{
	font-weight: 700;
	font-size: var(--font-size-xl);
	line-height: 1.3;
	margin: 0 20px 5px 0;
	color: var(--text-primary);
}

.project-home__title a{
	display: inline-block;
	text-decoration: none;
	color: inherit;
	transition: all var(--transition-fast);
}

.project-home__title a:hover {
	color: var(--blue-title-color);
	transform: translateX(2px);
}
.project-home__rating{
	font-weight: 600;
	font-size: var(--font-size-xs);
	line-height: 14px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--text-muted);
	flex-shrink: 0;
	margin-left: 15px;
	transition: all var(--transition-fast);
}

.project-home__rating span{
	display: block;
	font-family: 'Tomorrow';
	font-weight: 700;
	font-size: 32px;
	line-height: 1;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-top: 3px;
	transition: all var(--transition-fast);
}

.project-home:hover .project-home__rating span {
	transform: scale(1.05);
}
.project-home__list{
	font-size: var(--font-size-sm);
	line-height: 1.5;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.project-home__list li{
	position: relative;
	padding-left: 28px;
	margin-bottom: 8px;
	transition: all var(--transition-fast);
}

.project-home__list li:hover {
	color: var(--text-primary);
	transform: translateX(2px);
}
.project-home__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: 8px;
	left: 0;
}
.project-home__list strong{
	color: #111;
}
.project-home__btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, var(--blue-title-color) 0%, var(--footer-main) 100%);
	box-shadow: var(--shadow-button);
	border-radius: var(--border-radius-md);
	font-weight: 600;
	font-size: var(--font-size-sm);
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	padding: 14px 24px 16px;
	transition: all var(--transition-normal);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.project-home__btn a:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left var(--transition-slow);
}

.project-home__btn a:hover{
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(67, 123, 148, 0.4);
}

.project-home__btn a:hover i{
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(90, 122, 138, 0.6);
}

.project-home__btn a:hover:before {
	left: 100%;
}
.project-home__btn a span{
	display: block;
	font-family: 'Tomorrow';
	font-weight: 500;
	font-size: 11px;
	line-height: 20px;
	position: relative;
	margin-left: 15px;
}
.project-home__btn a span:before{
	content: '';
	display: block;
	background: linear-gradient(135deg, #5A7A8A 0%, #4A6A7A 100%);
	border-radius: 50%;
	position: absolute;
	top: -3px;
	right: -3px;
	bottom: -3px;
	left: -3px;
	opacity: 0.8;
}
.project-home__btn a i{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: relative;
	width: 26px;
	height: 26px;
	background: linear-gradient(135deg, #5A7A8A 0%, #4A6A7A 100%);
	box-shadow: 0 2px 8px rgba(90, 122, 138, 0.4);
	color: #fff;
	font-weight: 600;
	font-size: 10px;
	transition: all var(--transition-fast);
}

.project-home__btn a i svg{
	fill: #fff;
}
.home-complaints{
	padding: 45px 70px 0;
	background: var(--complain-background);
	box-shadow: inset 0px -10px 50px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	margin-bottom: 40px;
}
.home-complaints .home-head__title{
	color: var(--complain-color);
}
.home-complaints .home-head__title span{
	color: var(--complain-addcolor);
}
.home-complaints .home-head__btn a{
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(72, 31, 25, 0.3);
	color: var(--complain-addcolor);
}
.home-complaints .home-head__btn span{
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: var(--complain-addcolor);
	background-clip: unset;
	text-fill-color: var(--complain-addcolor);
}
.home-complaints .home-head__btn svg{
	fill: var(--complain-addcolor);
}
.home-complaints .home-head__btn a:hover{
	background: var(--complain-addcolor);
	border: 1px solid #fff;
}
.home-complaints .home-head__btn{
	fill: var(--complain-addcolor);
}
.home-complaints .home-head__prev,.home-complaints .home-head__next{
	background: var(--complain-color);
	box-shadow: 0px 5px 10px rgba(207, 70, 51, 0.2), inset 0px 0px 7px rgba(255, 255, 255, 0.5);
}
.home-complaints .home-head__prev:hover,.home-complaints .home-head__next:hover{
	background: var(--complain-addcolor);
	box-shadow: 0px 5px 10px rgba(207, 70, 51, 0.2), inset 0px 0px 7px rgba(255, 255, 255, 0.5);
}
.home-complaints__slider:not(.slick-initialized){
	visibility: hidden;
	height: 299px;
}
.home-complaints__slider{
	margin: 0 -70px 0 -10px;
}
.home-complaints__slide{
	padding: 0 10px 50px;
}
.home-complaints__container{
	display: none;
}
.complaint-home{
	display: flex;
	width: 535px;
	max-width: 100%;
	padding: 30px 35px 25px;
	background: #fff;
	box-shadow: var(--shadow-card);
	position: relative;
	border-radius: var(--border-radius-lg);
	transition: all var(--transition-normal);
	transform: translateY(0);
}

.complaint-home:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.complaint-home__link{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 10px;
}
.complaint-home:before{
	content: '';
	display: block;
	width: 2px;
	height: 40px;
	background: var(--complain-color);
	position: absolute;
	top: 23px;
	left: 0;
}
.complaint-home:after{
	content: '';
	display: block;
	height: 50px;
	border-radius: 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);
	position: absolute;
	left: 30px;
	right: 15px;
	bottom: -5px;
	clip-path: polygon(0 calc(100% - 5px), 100% calc(100% - 5px), 100% 100%, 0 100%);
}
.complaint-home__left{
	width: calc(100% - 115px);
	padding-right: 25px;
}
.complaint-home__head{
	display: flex;
	align-items: flex-start;
	margin-bottom: 14px;
}
.complaint-home__number{
	font-family: 'Tomorrow';
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	margin-right: 15px;
	transition: all var(--transition-fast);
}

.complaint-home:hover .complaint-home__number {
	transform: scale(1.1);
}
.complaint-home__title{
	font-weight: 700;
	font-size: var(--font-size-xl);
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--text-primary);
}

.complaint-home__title a{
	text-decoration: none;
	color: inherit;
	transition: all var(--transition-fast);
}

.complaint-home__title a:hover {
	color: var(--blue-title-color);
	transform: translateX(2px);
}
.complaint-home__text{
	height: 125px;
	overflow: hidden;
	font-size: 15px;
	line-height: 25px;
	mask-image: linear-gradient(black 0%, black 90px, transparent);
	mask-mode: alpha;
	-webkit-mask-image: linear-gradient(black 0%, black 90px, transparent);
	-webkit-mask-mode: alpha;
}
.complaint-home_noimage .complaint-home__text{
	margin-right: -140px;
}
.complaint-home__right{
	width: 115px;
	text-align: right;
	padding: 7px 0 0;
}
.complaint-home__date{
	display: inline-block;
	font-family: 'Tomorrow';
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	color: #616E77;
	position: relative;
	padding-left: 25px;
	margin-bottom: 25px;
}
.complaint-home__date svg{
	fill: #616E77;
	opacity: 0.4;
	position: absolute;
	top: 2px;
	left: 0;
}
.complaint-home__image_only-mobile{
	display: none;
}
.complaint-home__image{
	position: relative;
	z-index: 1;
	width: 115px;
	height: 115px;
}
.complaint-home__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 5px;
}
.complaint-home__image div{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}
.complaint-home__image div:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
	opacity: 0.4;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 5px;
}
.complaint-home__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: #FFFFFF;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	pointer-events: none;
}

.complaint-home__image a:not(:first-child) {
   display: none;
}

.home-knowledge{
	padding: 45px 70px 20px;
	background: var(--knowledge-background);
	border-radius: 20px;
	margin-bottom: 40px;
}
.home-knowledge .home-head{
	background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255, 255, 255, 0) 100.47%);
}
.home-knowledge .home-head__title{
	color: var(--knowledge-color);
}
.home-knowledge__container{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.home-knowledge__col{
	width: 50%;
	padding: 0 15px 30px;
}
.knowledge-item{
	height: 100%;
	padding: 32px 30px 30px;
	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: 10px;
	position: relative;
}
.knowledge-item:after{
	content: '';
	display: block;
	height: 50px;
	border-radius: 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);
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: -10px;
	clip-path: polygon(0 calc(100% - 10px), 100% calc(100% - 10px), 100% 100%, 0 100%);
}
.knowledge-item__title{
	padding: 6px 30px 4px;
	background: linear-gradient(90deg, rgba(217, 231, 234, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
	font-weight: bold;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #437B94;
	margin: 0 -30px 12px;
}
.knowledge-item__list{
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
}
.knowledge-item__list_more{
	display: none;
}
.knowledge-item__list li{
	padding: 10px 0 9px;
	border-bottom: 1px dashed rgba(97,110,119,0.15);
}
.knowledge-item__list li:last-child{
	border: none;
}
.knowledge-item__list a{
	display: inline-block;
	position: relative;
	padding-left: 36px;
	text-decoration: none;
}
.knowledge-item__list a:hover{
	color: #32ABA4;
}
.knowledge-item__list svg{
	fill: #437B94;
	position: absolute;
	top: 6px;
	left: 0;
}
.knowledge-item__list a:hover svg{
	fill: #32ABA4;
}
.knowledge-item_btn{
	padding-top: 7px;
}
.knowledge-item_btn a{
	display: block;
	padding: 10px 20px;
	background: #EEF1F3;
	border-radius: 5px;
	font-weight: 700;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #616E77;
	text-decoration: none;
}

/* Responsive
-----------------------------------------------------------------------------*/
@media only screen and (max-width: 1310px){
	.home-head{
		padding: 20px 30px;
		margin: 0 -30px 30px;
	}
	.home-head__title{
		margin: 0 30px 6px 0;
	}
	.home-projects{
		padding: 45px 30px 0;
	}
	.home-projects__slider{
		margin: 0 -30px 0 -12px;
	}
	.home-complaints{
		padding: 45px 30px 0;
	}
	.home-complaints__slider {
		margin: 0 -30px 0 -10px;
	}
	.home-knowledge{
		padding: 45px 30px 20px;
	}
}
@media only screen and (max-width: 992px){
	section:not(.home-complaints) .home-head{
		padding: 7px 15px;
		margin: 0 -15px 16px;
		background: rgba(255,255,255,0.4);
	}
	section:not(.home-complaints) .home-head__right{
		display: none;
	}
	section:not(.home-complaints) .home-head__left{
		width: 100%;
	}
	section:not(.home-complaints) .home-head__title{
		width: 100%;
		font-size: 34px;
		line-height: 40px;
		text-align: center;
		padding: 0;
		margin: 0;
	}
	.home-all{
		padding: 14px 0 6px;
		text-align: center;
	}
	.home-all a{
		display: inline-flex;
		align-items: center;
		font-weight: 500;
		font-size: 17px;
		line-height: 20px;
		text-decoration: none;
		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;
	}
	.home-all a i{
		display: block;
		line-height: 0;
		margin-left: 10px;
	}
	.home-all a svg{
		fill: #2C5364;
	}
	.home-projects{
		padding: 15px;
		margin: 0 -15px;
		border-radius: 0;
	}
	.home-projects__slider{
		display: none;
	}
	.home-projects__container{
		width: 834px;
		max-width: 100%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin: 0 auto;
	}
	.home-projects__col{
		width: 50%;
		padding: 0 15px 30px;
	}
	.project-home{
		width: 387px;
		padding: 20px 25px 25px;
	}
	.project-home__number{
		top: 15px;
		left: -5px;
	}
	.project-home__head{
		margin-bottom: 13px;
	}
	.project-home__image{
		width: 75px;
		height: 75px;
	}
	.project-home__title{
		font-size: 22px;
		line-height: 26px;
		margin: 0 20px 0 0;
	}
	.project-home__rating{
		margin: -6px 0 0 15px;
	}
	.project-home__rating span{
		font-size: 28px;
		line-height: 26px;
	}
	.project-home__list{
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 10px;
	}
	.project-home__list li{
		padding-left: 19px;
		margin-bottom: 0;
	}
	.project-home__btn a{
		padding: 12px 20px 14px;
		font-weight:600;
	}
	.project-home__btn a span{
		margin-left: 12px;
	}
	.project-home__btn a i{
		width: 24px;
		height: 24px;
		font-size: 10px;
		line-height: 20px;
	}
















	.home-complaints{
		padding: 15px;
		margin: 0 -15px;
		border-radius: 0;
	}
	.home-complaints .home-head__title{
		font-size: 34px;
		line-height: 40px;
	}
	/* 	.home-complaints__slider{
		display: none;
	}
	.home-complaints__container{
		width: 834px;
		max-width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
	}
	.home-complaints__col{
		width: 50%;
		padding: 0 15px 30px;
	}
	.home-knowledge .home-head{
		background: rgba(255,255,255,0.15);
	}
	.home-complaints .home-all a{
		background: none;
		color: #481F19;
		-webkit-text-fill-color: #481F19;
		background-clip: unset;
	}
	.home-complaints .home-all svg{
		fill: #481F19;
	} */
	.home-complaints .home-all a{
		background: none;
		color: var(--complain-addcolor);
		-webkit-text-fill-color: var(--complain-addcolor);
		background-clip: unset;
	}
	.home-complaints .home-all svg{
		fill: var(--complain-addcolor);
	}
	







	.home-knowledge{
		padding: 15px 15px 10px;
		margin: 0 -15px;
		border-radius: 0;
	}
	.home-knowledge__col{
		width: 100%;
		padding: 0 15px 15px;
	}
	.knowledge-item{
		padding: 15px 15px 20px;
	}
	.knowledge-item:after{
		position: absolute;
		left: 15px;
		right: 15px;
		bottom: -5px;
	}
	.knowledge-item__title{
		padding: 6px 15px 4px;
		margin: 0 -15px 0px;
	}
	.knowledge-item__list{
		font-size: 16px;
		line-height: 25px;
	}
	.knowledge-item__list li{
		padding: 12px 0 12px;
	}
	.knowledge-item__list a{
		padding-left: 30px;
	}
	.knowledge-item__list svg{
		top: 3px;
	}
	.knowledge-item__btn{
		padding-top: 6px;
	}
}
@media only screen and (max-width: 767px){
	.home-complaints .home-head{
		padding: 7px 15px;
		margin: 0 -15px 16px;
		background: rgba(255,255,255,0.4);
	}
	.home-complaints .home-head__right{
		display: none;
	}
	.home-complaints .home-head__left{
		width: 100%;
	}
	.home-complaints .home-head__title{
		width: 100%;
		font-size: 34px;
		line-height: 40px;
		text-align: center;
		padding: 0;
		margin: 0;
	}
	.home-projects__container{
		width: 387px;
	}
	.home-projects__col{
		width: 100%;
		padding: 0 0 15px;
	}









	.home-complaints__slider{
		display: none;
	}
	.home-complaints__container{
		width: 834px;
		max-width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
	}
	.home-complaints__col{
		width: 50%;
		padding: 0 15px 30px;
	}
	.home-knowledge .home-head{
		background: rgba(255,255,255,0.15);
	}
	/* .home-complaints .home-all a{
		background: none;
		color: #481F19;
		-webkit-text-fill-color: #481F19;
		background-clip: unset;
	}
	.home-complaints .home-all svg{
		fill: #481F19;
	} */
	.complaint-home{
		width: 100%;
	}




















	.home-complaints__container{
		/* width: 387px; */
		width: 100%;
	}
	.home-complaints__col{
		width: 100%;
		padding: 0 0 15px;
	}
	
}
@media only screen and (max-width: 450px){
	.complaint-home__image_only-mobile{
		display: block;
	}
	.complaint-home{
		width: 387px;
		padding: 19px 15px 23px;
	}
	.complaint-home__left{
		width: 100%;
		padding: 0;
	}
	.complaint-home__head{
		display: block;
		margin-bottom: 11px;
	}
	.complaint-home:before{
		top: 12px;
	}
	.complaint-home:after{
		left: 10px;
		right: 10px;
	}
	.complaint-home__number{
		display: inline;
	}
	.complaint-home__title{
		display: inline;
		font-size: 22px;
		line-height: 30px;
	}
	.complaint-home_noimage .complaint-home__text{
		margin: 0;
	}
	.complaint-home__right{
		display: none;
	}
	.complaint-home__date{
		display: none;
	}
	.complaint-home__image{
		width: 100%;
		height: 165px;
		margin-bottom: 13px;
	}
}
@media only screen and (max-width: 411px){
	
	.home-head{
		padding: 7px 12px 10px;
	}
	.home-head__title{
		font-size: 32px;
		line-height: 38px;
	}
	.project-home{
		width: 387px;
		padding: 12px 19px 15px;
	}
	.project-home:after{
		left: 10px;
		right: 10px;
	}
	.project-home__image{
		display: none;
	}
	.project-home__content{
		padding-left: 85px;
		position: relative;
	}
	.project-home__content .project-home__image{
		width: 70px;
		height: 70px;
		margin: 0;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
	}
	.project-home__head{
		margin: 0 0 11px 8px;
	}
	.project-home__title{
		font-size: 20px;
		line-height: 30px;
	}
	.project-home__rating{
		display: flex;
		align-items: baseline;
		margin: -4px 0 0 15px;
		font-size: 11px;
	}
	.project-home__rating span{
		font-size: 25px;
		line-height: 30px;
		margin: 0 0 0 5px;
	}
	.project-home__list{
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 11px;
	}
	.project-home__btn a{
		padding: 7px 20px 9px;
		font-size: 14px;
		line-height: 20px;
	}
	.complaint-home{
		padding: 17px 15px;
	}
	.complaint-home__head{
		margin-bottom: 12px;
	}
	.complaint-home__title{
		font-size: 20px;
		line-height: 30px;
	}
	.complaint-home__number{
		margin-right: 9px;
	}
	.complaint-home__image{
		height: 150px;
	}
	/* .complaint-home__text{
		mask-image: linear-gradient(black 0%, black 90px, transparent);
		-webkit-mask-image: linear-gradient(black 0%, black 90px, transparent);
	} */
	
}
@media only screen and (max-width: 383px){
	.home-head__title{
		font-size: 30px;
		line-height: 37px;
	}
	.home-projects{
		padding: 15px 10px;
	}
	.project-home{
		padding: 12px 15px 15px;
	}
	.project-home__head{
		margin: 0 0 11px 15px;
	}
	.project-home__rating{
		font-size: 10px;
	}
	.complaint-home__image{
		height: 140px;
	}
	.project-home__list li {
	    padding-left:16px;
	}
}
@media only screen and (max-width: 359px){
	.project-home{
		padding: 12px 10px 15px;
	}
	.project-home__content{
		padding-left: 80px;
	}
	.project-home__head{
		margin: 0 0 15px 19px;
	}
	.project-home__title{
		font-size: 18px;
		line-height: 22px;
		margin: 3px 0px 0 0;
	}
	.project-home__list{
		font-size: 13px;
		line-height: 22px;
		margin-bottom: 11px;
	}
	.home-complaints{
		padding: 15px 10px;
	}
	.complaint-home{
		padding: 17px 15px 22px;
	}
	.complaint-home__title{
		font-size: 18px;
		line-height: 30px;
	}
	.complaint-home__number{
		margin-right: 6px;
	}
	.complaint-home__image{
		height: 125px;
	}
	.home-knowledge{
		padding: 15px 10px 10px;
	}
	.knowledge-item:after{
		left: 10px;
		right: 10px;
	}
}

/* Современные анимации для 2025 года */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Анимации появления элементов */
.home-projects__col {
	animation: fadeInUp 0.6s ease-out;
}

.home-projects__col:nth-child(1) { animation-delay: 0.1s; }
.home-projects__col:nth-child(2) { animation-delay: 0.2s; }
.home-projects__col:nth-child(3) { animation-delay: 0.3s; }
.home-projects__col:nth-child(4) { animation-delay: 0.4s; }

.home-head__title {
	animation: slideInLeft 0.8s ease-out;
}

.project-home__number {
	animation: scaleIn 0.5s ease-out;
}

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

.project-home:hover {
	z-index: 10;
}

/* Скелетон загрузка */
.skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/* Улучшенные переходы для мобильных устройств */
@media (hover: none) {
	.project-home:hover {
		transform: none;
	}
	
	.project-home__btn a:hover {
		transform: none;
	}
	
	.home-head__prev:hover,
	.home-head__next:hover {
		transform: none;
	}
}
