.aurora-brands {
	width: 100%;
	position: relative;
	padding: 0 5% 45px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.aurora-brands-wrapper {
	max-width: 1200px;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aurora-brands-text {
	width: 100%;
	  max-width: 1200px;
	  position: relative;
	  margin: 0 0 30px 0;
	  background: var(--white-color);
		padding: 30px;
		border-radius: 12px;
		box-shadow: 0 1px 10px #e8e8e8;
}

.aurora-brands-logos {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	justify-content: space-evenly;
	gap: 1%;
}

.aurora-brands-logos .brand-item {
	width: 19%;
	height: auto;
	margin: 0.5em 0;
	cursor:pointer;
	border-radius: 8px;
	overflow:hidden;
	box-shadow: 0 1px 10px #e8e8e8;
}

.aurora-brands-logos picture:hover img {
	filter:brightness(0.95);
	transition: all 0.3s;
}

.aurora-brands-logos img {
	width: 100%;
	display: block;
	transition: all 0.3s;
}

@media only screen and (max-width:1025px){
	.aurora-brands-logos .brand-item {
		width: 24%;
	}
}

@media only screen and (max-width:769px){
	.aurora-brands-logos .brand-item {
		width: 32%;
	}
}

@media only screen and (max-width:600px){
	.aurora-brands-logos .brand-item {
		width: 49%;
	}
}