.windows-brand h2 {
	font-size: 22px;
	margin-bottom: 20px;
}
.windows-brand .brand__llist {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;	
}
.windows-brand .brand__item {
	border: 1px solid var(--chernyy-100);
    padding: 15px;
    background: var(--white);
}
@media (min-width: 768px) {
	.windows-brand h2 {
		font-size: 38px;
		margin-bottom: 25px;
	}
	.windows-brand .brand__llist {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;	
	}
	.windows-brand .brand__item {
		padding: 33px 24px 33px 23px;
	}
	.windows-brand .brand__item:last-child {
		display: none;
	}	
}
@media (min-width: 1024px) {
	.windows-brand h2 {
		font-size: 40px;
		margin-bottom: 20px;
	}
	.windows-brand .brand__llist {
		grid-template-columns: repeat(5, 1fr);
		gap: 10px;	
	}
	.windows-brand .brand__item {
		padding: 26px 15px 27px;
	}
	.windows-brand .brand__item:last-child {
		display: block;
	}	
}