.language {
	width: 100%;
	/* height: 100vh; */
	min-height: 100vh;
	overflow: hidden;
	background-color: black;
	display: flex;
	justify-content: center;
	padding-top: 11.5vh;
	box-sizing: border-box;
}

.language-con {
	min-width: 1600px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.language-title {
	color: #FFF;
	text-align: center;
	font-family: Arial;
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.language-region {
	position: relative;
	display: flex;
	width: 80%;
	padding: 40px 11.9% 0px 11.9%;
	box-sizing: border-box;
	justify-content: space-between;
}

.language-region-txt {
	color: #FFF;
	text-align: center;
	font-family: Arial;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
	padding: 0px 32px;
}

.language-region-txt-s {
	color: #D80C24;
}

.language-region-line {
	position: relative;
	margin-top: 17px;
	width: 64.58%;
	height: 1px;
	background-color: #999;
	z-index: 0;
}

.language-region-move {
	position: absolute;
	bottom: -19px;
	left: 0px;
	width: 140px;
	height: 3px;
	background-color: #D80C24;
	z-index: 2;
}

.language-descrip {
	padding-top: 46px;
	color: #999;
	font-family: Arial;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	width: 250px;
	justify-content: space-around;
}

.language-descrip:hover {
	color: #FFF;
}

.region {
	width: 64.58%;
	display: none;
}

.language-select {
	padding-top: 30px;
	padding-bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.language-select a {
	width: 25%;
}

.language-item {
	cursor: pointer;
}

.language-item:hover .language-item-txt1,
.language-item:hover .language-item-txt2 {
	color: #FFF;
}

.language-item-txt1 {
	color: #999;
	font-family: Arial;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.language-item-txt1 img {
	width: 25px;
	object-fit: cover;
	padding-right: 13px;
}

.language-item-txt2 {
	color: #999;
	font-family: Arial;
	font-size: 10px;
	font-weight: 400;
	text-align: center;
	line-height: 19px;
	text-transform: uppercase;
	width: 60px;
	height: 19px;
	border-radius: 5px;
	border: 0.5px solid #999;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 14px;
	display:inline-block;
	white-space: nowrap;  
	overflow: hidden;
	text-overflow: ellipsis;
}

.close {
	position: absolute;
	top: 40px;
	right: 63px;
	cursor: pointer;
	transition: transform .5s ease-out;
}

.close:hover {
	transform: rotate(90deg);
}