.exhibitors-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding-bottom: 5vh;
}

.exhibitor-card {
	background-color: rgba(224,190,154,0.8);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width: auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}

.exhibitor-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.exhibitor-main:hover {
	transform: translateY(-5px);
}

.exhibitor-main a {
	text-decoration: none;
	color: inherit;
}

.exhibitor-icon {
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
}

.exhibitor-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.exhibitor-url {
	font-size: 14px;
	color: #0077cc;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.social-link {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #0077cc;
}

.social-icon {
	width: 24px;
	height: 24px;
}

@media (max-width: 768px) {
	.exhibitor-card {
		width: 100%;
	}
}
.top-container {
	max-width: 800px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
	text-align: center;
}

.top-header {
	background-color: rgb(216, 196, 174);
	padding: 20px;
	margin-bottom: 30px;
}

.top-title {
	font-size: 32px;
	color: #000;
	margin: 0;
}

.top-description {
	line-height: 1.6;
	margin: 20px 0;
}