@keyframes ani-fade-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.partners__title {
	margin-bottom: 20px;
}

.partners__text {
	margin-bottom: 20px;
}

.partners__list {
	display: flex;
	flex-wrap: wrap;
	margin: 32px -10px 0;
	padding: 0;
	list-style: none;
}

.partners__item {
	display: flex;
	width: calc(100%/3);
	flex-grow: 2;
	padding: 0 10px;
	margin-bottom: 20px;
	opacity: 0;
	animation: ani-fade-in 1.8s forwards;
}

@media (max-width: 991px) {
	.partners__item {
		width: 50%;
	}
}

@media (max-width: 600px) {
	.partners__item {
		width: 100%;
	}
}

.partners__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 32px 28px;
	height: auto;
	background-color: #F4F4F4;
	border-radius: 20px;
}

.partners__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 92px;
}

.partners__image img {
	max-height: 92px;
	max-width: 100%;
	object-fit: contain;
}

.partners__image--photo {
	position: relative;
	width: 92px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}

.partners__image--photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.partners__name {
	margin: 20px 0 0;
	font-size: 21px;
	line-height: 1.1;
	color: #000000;
	font-weight: 600;
	text-align: center;
}

.partners__desc {
	margin: 8px 0 20px;
	font-size: 14px;
	line-height: 1.5;
	color: #000000;
	font-weight: 300;
	text-align: center;
}

.social-light {
	display: flex;
	flex-wrap: wrap;
	margin: auto -6px 0;
	padding: 8px 0 0;
	list-style: none;
}

.social-light__item {
	padding: 0 6px;
	margin-bottom: 8px;
}

.social-light__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background-color: #ffffff;
	border-radius: 12px;
}

.social-light__link img {
	max-width: 20px;
	max-height: 20px;
	object-fit: contain;
	filter: brightness(100%);
	transition: filter 0.3s ease-in-out;
}

.social-light__link:hover img,
.social-light__link:focus img {
	filter: brightness(0%);
}

.partners__more {
	display: block;
	margin: 0 auto;
	padding: 15px 30px;
	width: calc(100% - 40px);
	font-size: 16px;
	line-height: 1.2;
	color: #000000;
	border-radius: 60px;
	background-color: #F4F4F4;
	border: none;
	cursor: pointer;
	transition: color 0.3 ease-in-out, background-color 0.3s ease-in-out;
}

.partners__more:hover,
.partners__more:focus {
	background-color: #000000;
	color: #ffffff;
}