.sport-container {
	width: calc(20% - 1em);
	cursor: pointer;
	margin: .5em;
	background-size: 100% 100%;
}

.img-sport {
	width: 100%;
	height: auto;
	border-radius: 1rem;
}

/* Large Tablets */
@media screen and (max-width: 992px) {

}

/* Medium Tablets */
@media screen and (max-width: 768px) {
    .sport-container {
        width: calc(30% - 1em);
    }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
    .sport-container {
        width: calc(50% - 0.5em);
    }

    .sport-container:last-child {
        margin-right: 0 !important;
    }

    .sport-container:nth-child(2) {
        margin-left: 0 !important;
    }
}

/* Extra Small Mobile Phones */
@media screen and (max-width: 400px) {

}