.compatibility{
	font-weight: var(--main-medium-font);
	color: var(--main-color-dark-grey);
}
.compatibility-first-color{
	color: var(--main-color-green);
}
.compatibility-second-color{
	color: var(--main-color-blue);
}
.compatibility__item{
	display: flex;
	gap: 15px;
}
.compatibility__item + .compatibility__item{
	margin-top: 45px;
}
.compatibility__first-product,
.compatibility__second-product{
	width: 100%;
}
.compatibility__first-product{
	display: flex;
	flex-direction: column;
	max-width: 300px;
	flex-shrink: 2;
}
.compatibility__title{
	margin-bottom: 25px;
	font-size: 1.3em;
	text-align: center;
}
.compatibility__first-product .compatibility__image{
	margin: auto 0 0;
}
.compatibility__subtitle{
	margin: 15px 0 auto;
	text-align: center;
}
.compatibility__subtitle .compatibility-blue{
	text-transform: uppercase;
}
.compatibility__arrow-image{
	align-self: center;
}
.compatibility__products-list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.compatibility__products-item{
	display: flex;
	justify-content: space-between;
	width: calc(50% - 10px);
	padding: 10px;
	border: 1px solid var(--main-color-light-grey);
	border-radius: 10px;
}
.compatibility__products-item-title{
	text-transform: uppercase;
}
.compatibility__products-item-info{
	flex: 1;
	max-width: 200px;
}
.compatibility__products-item-image{
	flex: 1;
	max-width: 300px;
	align-self: center;
	text-align: center;
}
@media (max-width: 900px){
	.compatibility__item{
		flex-direction: column;
	}
	.compatibility__first-product{
		align-self: center;
	}
	.compatibility__arrow-image{
		display: none;
	}
}
@media (max-width: 700px){
	.compatibility__products-item{
		flex-direction: column;
	}
	.compatibility__products-item-info{
		max-width: 100%;
		text-align: center;
	}
	.compatibility__products-item-image{
		max-width: 100%;
	}
}