

/* Mobile S */
@media all and (max-width: 767px) {
	#hd .header{
		width: 100%;
		height: 50px;
		justify-content: space-between;
		align-items: center;
	}
	.header__logo{
		width: 150px;
		height: 25px;
	}
	.header-hamberger{
		display: block;
	}
	.header__logo a{
		height: 100%;
		background-size: contain;
	}
	.header .ham_btn{
		width: auto;
		display: flex;
		align-items: center;
	}
	#hd .sub_btn{
		display: none;
	}
	.ham_btn>img{
		display: none;
		width: 20px;
	}
	.ham_btn>img.on{
		display: block;
	}

	#hd .lang>button{
		display: none;
	}

	.header .mobile_nav{
		display: none;
		overflow: scroll;
		z-index: 1000;
		position: fixed;
		top: 0px;
		right: 0px;
		width: 80%;
		height: 100vh;
		padding: 50px 30px 50px 30px;
		background-color: var(--black);
	}
	.mobile_nav *{
		color: #fff;
	}
	.mobile_nav .lang{
		border-bottom: 1px solid rgba(255,255,255,0.5);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.mobile_nav .lang>a{
		display: block;
		font-size: 14px;
		font-weight: 400;
		padding: 5px 0px;
		margin-bottom: 10px;
	}
	.mobile_nav .lang>a:last-of-type{
		margin: 0px;
	}
	.mobile_nav>li{
		position: relative;
	}
	.mobile_nav>li>a{
		display: block;
		font-size: 17px;
		font-weight: 500;
		padding: 10px 0px;
		margin-bottom: 15px;
	}
	.mobile_nav>li>img{
		position: absolute;
		top: 22px;
		right: 0px;
		transition: 0.3s ease-out;
		transform: translateY(-50%) rotate(180deg);
		width: 15px;
	}
	.mobile_nav>li>img.on{
		transform: translateY(-50%) rotate(0deg);
	}
	.mobile_nav::after{
		z-index: -10;
		content: '';
		display: block;
		clear: both;
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0,0,0,0.5);
	}
	.mobile_nav .close_btn{
		position: absolute;
		top: 50px;
		right: 30px;
	}
	.close_btn button{
		padding: 5px;
	}
	.close_btn img{
		width: 25px;
	}

	
	.mobile_2dep>li>a{
		display: block;
		font-size: 14px;
		padding: 5px 0px;
		margin-bottom: 10px;
	}
	.mobile_2dep{
		padding-left: 20px;
	}
	.mobile_2dep{
		display: none;
	}
}
/* Mobile E */
