/**Exhibitors**/
.exhibitors_wrap_padding{
    padding: 50px;
}

.exhibitors_wrap{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: start;
	width: 100%;
	gap: 20px;
	flex-wrap: wrap;
}

.exhibitors_item {
	flex: 1 1 calc(25% - 20px); /* 每個區塊占 25% 寬度，減去間距 */
	box-sizing: border-box; /* 包含內邊距和邊框 */
	max-width: 25%; /* 設定最大寬度 */
	border: 1px solid #163C91;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	margin-bottom: 50px;
}

.exhibitors_item:hover{
	transition: all 0.3s ease;
	box-shadow: 0 0 10px #4574db;
}

.logo_head{
	position: relative;
	display: block;
	height: 200px;
	background-color: #fff;
}

.logo_head img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	height: 70%;
	object-fit: contain;
}

.des{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: #5A80B7;
	gap: 10px;
}
.name_box{
	position: relative;
	display: block;
	width: 100%;
	padding: 5px 0 10px 0;
	text-align: center;
}
.name{
	font-size: 1.3rem;
	color: #fff;
	font-weight: normal;
}
.des_body{
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}
.place{
	position: relative;
	display: block;
	width: fit-content;
	padding: 10px;
	border-radius: 10px;
	background-color: #333333;
	color: #FFD400;
	height: fit-content;
	white-space: nowrap;
}
.zone{
	position: relative;
	display: block;
	width: fit-content;
	padding: 10px 0;
	color: #99D1FF;
}




@media screen and (max-width: 1280px) {
	.exhibitors_item {
		flex: 1 1 calc(33.4% - 20px); /* 每個區塊占 25% 寬度，減去間距 */
		max-width: 33.4%; /* 設定最大寬度 */
	}
}

@media screen and (max-width: 991px) {
	.exhibitors_item {
		flex: 1 1 calc(50% - 20px); /* 每個區塊占 25% 寬度，減去間距 */
		max-width: 50%; /* 設定最大寬度 */
	}
}

@media screen and (max-width: 720px) {
	.exhibitors_item {
		flex: 1 1 calc(100% - 20px); /* 每個區塊占 25% 寬度，減去間距 */
		max-width: 100%; /* 設定最大寬度 */
	}
}

@media screen and (max-width: 680px) {

	.exhibitors_wrap_padding{
		padding: 25px;
	}


}