.exhibitors {
	display: flex;
	flex-flow: wrap; 
	justify-content: center;
	margin: 0 -0.5rem;
}
.exhibitors .orgwrap {
	flex-basis: 100%;	
	padding: 0.5rem;
	transition: transform 0.2s ease;
}
.exhibitors .orgwrap:hover, .exhibitors .orgwrap:focus {
	cursor: pointer;
    opacity: 1;
	transform: translatey(-3px);
}
.exhibitors .org {
	position: relative;	
	height: 400px;
	overflow-y: auto;
	padding: 2.5rem 1rem 1rem 1rem;
	box-shadow: 0 0 2px #777;
	transition: box-shadow 0.2s ease;
}
.exhibitors .org.hasUrl:hover {
	box-shadow: 0 0 4px #06ccc5;
}
.exhibitors .org span {
	visibility: hidden;
	position: absolute;
	right: 5px;
	top: 5px;
	background-color: #06ccc5;
	text-align: center;
	padding: 5px 10px;
	color: white;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}
.exhibitors .org:hover span {
	opacity: 1;
	visibility: visible;
}
.exhibitors .org a {
	color: #444 !important;
}
.exhibitors .org a:link, .exhibitors .org a:visited, .exhibitors .org a:focus,
.exhibitors .org a:hover, .exhibitors .org a:active {
	text-decoration: none !important;
}
.exhibitors .org p {
	font-size: 1rem !important;
}
.exhibitors .org .header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 10px;
}
.exhibitors .org .logo {
	flex: 0 0 45%;
}
.exhibitors .org .logo img {
	display: block;
}
.exhibitors .org .title {
	width: 100%;
}
.exhibitors .org h3 {
	line-height: 1;
	margin-bottom: 0 !important;
}
.exhibitors .org .booth {
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.exhibitors .org hr {
	background-image: none;
	height: 0;
	border-color: #444;
	margin: 0.5rem auto;
	border-style: inset;
	border-width: 1px !important;
}

@media only screen and (min-width: 768px) {
	.exhibitors .orgwrap { 
		flex-basis: 50%;
	}
}

@media only screen and (min-width: 992px) {
	.exhibitors .orgwrap { 
		flex-basis: 33.3333%;
	}
	.exhibitors .org {
		height: 450px;
	}
}
