/**
******************************************************************
*	DESKTOP LAYOUT 
******************************************************************
*/
.partners-section {
	max-width: 860px;
	margin: 0 auto 52px;
	text-align: center;
}

.partners-title {
	display: inline-block;
	margin: 0 0 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,0.22);
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.partners-grid {
	display: flex;
	justify-content: center;
	gap: 18px;
}

.partner-card {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	max-width: 260px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.18);
	background-color: rgba(255,255,255,0.09);
	color: #fff;
	text-decoration: none;
	transition: transform 0.25s ease-out, border-color 0.25s ease-out, background-color 0.25s ease-out;
}

.partner-card:hover,
.partner-card:focus {
	border-color: rgba(244,148,1,0.8);
	background-color: rgba(255,255,255,0.16);
	color: #fff;
	text-decoration: none;
	transform: translateY(-4px);
}

.partner-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 132px;
	background-color: #fff;
}

.partner-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.partner-name {
	display: block;
	padding: 14px 12px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (min-width: 1900px) {
	

}
@media (min-width: 1700px) and (max-width: 1899px) {
	

}
@media (min-width: 1500px) and (max-width: 1699px) {
	
	
	
}
@media (min-width: 1300px) and (max-width: 1499px) {
	
	

}
@media (min-width: 1200px) and (max-width: 1299px) {
	
	

}
@media (min-width: 992px) and (max-width: 1199px) {
	
	

}

@media (min-width: 992px) {
	
	
}

/**
******************************************************************
*	MOBILE & TABLET COMMON
******************************************************************
*/
@media (min-width: 200px) and (max-width: 991px) {
	.partners-section {
		max-width: 620px;
		margin-bottom: 42px;
	}

	.partners-grid {
		flex-wrap: wrap;
	}

	.partner-card {
		flex-basis: calc(50% - 9px);
	}
	

}

/**
******************************************************************
*	TABLET
******************************************************************
*/
@media (min-width: 768px) and (max-width: 991px) {

	
}

/**
******************************************************************
*	MOBILE
******************************************************************
*/
@media (min-width: 200px) and (max-width: 767px) {	
	.partners-title {
		font-size: 24px;
	}

	.partners-grid {
		display: block;
	}

	.partner-card {
		max-width: 320px;
		margin: 0 auto 14px;
	}

	.partner-image {
		height: 170px;
	}

	.partner-name {
		padding: 12px 10px;
		font-size: 14px;
	}

	.partner-card:last-child {
		margin-bottom: 0;
	}
	

}
@media (min-width: 600px) and (max-width: 767px) {

	
	
}
@media (min-width: 480px) and (max-width: 599px) {

	

}
@media (min-width: 200px) and (max-width: 479px) {
	
	

}
