/*
 Theme Name: Divi Child
 Theme URI: https://www.elegantthemes.com/gallery/divi/
 Description: Divi Child Theme
 Author: Elegant Themes
 Author URI: https://www.elegantthemes.com
 Template: Divi
 Version: 1.0.0
*/

/* =Theme customization starts here
------------------------------------------------------- */
.listing-wrapper {
	display: flex;
	justify-content: space-between;
}

.listing-item {
	width: 100%;
	max-width: 210px;
	text-align: center;
	background-color: #F2F3F3;
	border-radius: 8px;
	padding: 16px;
	transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
}

.listing-item:hover {
	background-color: #8ECAE6;
}

.listing-item span {
	color: #0f0f0f;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.listing-wrapper {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}
	
	.listing-item {
		max-width: calc(calc(100% / 3) - 20px);
	}
}

@media (max-width: 1024px) {
	.listing-wrapper {
		gap: 20px;
	}
	
	.listing-item {
		max-width: 100%;
	}
	
	.listing-item a {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
}