section.partnership{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	gap: 20px;
	max-width: var(--block-mid-width) !important;
	h2{
		text-align:center;
	}
	.txt1, .txt2{
		font-weight: normal;
		font-family: var(--primary-font);
		font-size: var(--big-font-size);		
		color: var(--txt-light);		
		text-align:center;
		max-width:1056px
	}
	.txt2{
		font-size: var(--prm-font-size);		
		max-width:696px
	}		
	.elementsWrap{
		display:grid;
		grid-template-columns: repeat(5, 1fr);
		width:100%;
		gap: 24px;
		margin: 16px 0;
		div{
			display:flex;
			justify-content: center;
			align-items: center;
			height: 154px;
			background-color: var(--color-light);
			border-radius: var(--semi-radius);
			img{
				width: 122px;
			}
		}
	}
	a{
		text-decoration: none;
		color: var(--color-light);
		width:260px;
		height:42px;
		line-height:42px;
		text-align: center;
		border-radius: var(--semi-radius);
		background-color: var(--footer-color);
		font-weight: var(--bold-weight);
	}	
}
@media (max-width: 1024px) {
}
@media (max-width: 600px) {
	section.partnership{
		padding: 0 12px;
		.elementsWrap{
			gap:12px;
			div{
				height: 44px;
				img{
					width: 35px;
				}
			}
		}
	}	
}