@charset "UTF-8";
html,body,main {
	height: auto;
}
.swiper-button-next {
	left: 5px;
	right: initial;
}
.swiper-button-prev {
	right: 5px;
	left: initial;
}
.main {
	justify-content: flex-start;
	margin-top: 20px;
}

.header_nav a[href="/expo/catalog/"] {
	background: rgba(12, 0, 82, 1)
}
a.lang_btn {
	display: none;
}

.expo_stand {
	max-width: 1114px;
	width: 90%;
	margin: 20px auto 0;
	padding-bottom: 60px;
}
.expo_stand--top {
	width: 100%;
	height: 46px;
	background: url("../img/stand_top.webp");
	position: relative;
	
	&::after {
		content: "";
		display: block;
		height: 100%;
		width: 28px;
		background: url("../img/stand_top_right.webp");
		position: absolute;
		top: 0;
		right: 0;
	}
	
	h2 {
	  max-width: 415px;
		width: 80%;
		height: 56px;
		padding: 0 3%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 2.4rem;
		font-weight: bold;
		color: #0C0052;
		background: linear-gradient(to right, #ccc, #fff);
		position: absolute;
		left: 0;
		right: 0;
		bottom: 10px;
		margin: auto;
	}
}

.expo_stand--main {
	width: 100%;
	height: auto;
	padding: 0 32px;
	background: url("../img/stand.webp");
	margin: auto;
	box-sizing: border-box;
	position: relative;

	&::after {
		content: "";
		display: block;
		height: 100%;
		width: 50px;
		background: url("../img/stand_right.webp");
		position: absolute;
		top: 0;
		right: 0;
	}
}

.expo_stand--catalog {
	width: calc(100% / 5);
	height: 256px;
	padding-bottom: 47px;
	display: flex;
	justify-content: center;
	overflow: visible;

	a {
		width: 92px;
		height: 100%;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		position: relative;
	}
}
.expo_stand--title {
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	font-size: 1.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	white-space: nowrap;
	z-index: 10;
	
	h3 {
		font-weight: bold;
	}
	
	p {
		font-weight: normal;
		font-size: 1.5rem;
	}
}

.swiper {
	width: 100%;
	overflow: hidden;
}

@media screen and (max-width: 1024px) {
	.expo_stand--catalog {
		width: calc(100% / 4);
	}
	.expo_stand--title {
		font-size: 1.4rem;
		
		p {
			font-size: 1.3rem;
		}
	}
}

@media screen and (max-width: 767px) {
	.expo_stand {
		margin-top: 0;
	}
	.expo_stand--catalog {
		width: calc(100% / 3);
	}
	.expo_stand--title {
		font-size: 1.2rem;
		text-align: center;
		
		p {
			font-size: 1.1rem;
		}
	}
	.expo_stand--top {
	  h2 {
			height: auto;
			padding: 8px 3%;
			font-size: 2rem;
			bottom: initial;
			top: 0;
			transform: translateY(-25%);
		}
	}
	.swiper.header_news {
		width: 100%;
	}
	.main {
		margin-top: 0;
	}
}
@media screen and (max-width: 500px) {
	.expo_stand--catalog {
		width: calc(100% / 2);
	}
}