@charset "utf-8";


#lang a {
	font-weight: 300;
}

/* ########## mobile ########## */

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

#lang {
	position: absolute;
	z-index: 10;
	top: 15px;
	right: 15px;
}

}


@media screen and (max-device-width: 640px) and (orientation: portrait) {
	
}


@media screen and (max-device-width: 640px) and (orientation: landscape) {
	
}


/* ########## tablet ########## */


@media screen and (min-device-width : 768px) and (max-device-width : 1024px) {

}


/* ########## desktop ########## */


@media screen and (min-device-width: 768px) {
	#lang {
		position: fixed;
		z-index: 10;
		top: 20px;
		right: 20px;
	}
}