.sport-item a {
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    flex-wrap: nowrap;
	gap:1rem;
}

.sport-item a img {
	height:80px;
}

.sport-item a h3 {
	text-transform: uppercase;
	font-weight:600;
	text-align:center;
}

@media (min-width: 768px) and (max-width:991px) {
	
	.sports-row {
		row-gap:1rem;
	}
	
	.sport-item a img {
	        max-width: 90px;
        max-height: 72px;
}


	
}

@media (min-width: 992px) {
	.sport-item a img {
	max-height: 75px;
        max-width: 120px;
}
}

@media (min-width:992px) and (max-width:1199px) {
	
	.sport-item a {
    flex-direction: column;
}
	
}

@media (max-width: 768px) {
	.sport-item a img {
    max-height: 70px;
    max-width: 90px;
}

	.sports-row {
		row-gap:1rem;
	}

}