/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/




.cf7-half {
	flex: 0 0 48%;
	box-sizing: border-box;
}

.cf7-full {
	flex: 0 0 100%;
	box-sizing: border-box;
}


.exhibitors-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap: 20px;
}

@media (max-width: 768px) {
	.exhibitors-grid {
		grid-template-columns: 1fr;
	}
}

.exhibitor-card {
	border: 1px solid #ccc;
	padding: 15px;
	box-sizing: border-box;
}

.exhibitor-logo {
	height: 200px;
	display: flex;
	justify-content: center; 
	align-items: center; 
	overflow: hidden;
	margin-bottom: 40px;
}

.exhibitor-logo img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}






.welcome-message {
	text-align: center;
	color: #0073aa;
	padding: 12px 16px 50px;
	border-radius: 6px;
	margin-bottom: 50px;
	font-size: 32px;
	line-height: 42px;
}