*{
	box-sizing: border-box;
	position: relative;
}
a,ul,li{text-decoration: none; list-style: none;}
h1,h2,h3,h4,h5,h6,p,a,ul,li,table{
	font-family: 'helvetica','roboto',sans-serif;
	color: #000;
}
html {
    overflow: -moz-hidden-unscrollable;
    height: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    height: 100%;
	width: calc(100vw);
	overflow: auto;
}
.wrapper{
	width: 100%;
	height: 100%;
	user-select: none;
	background-image: url('../img/itower blur.jpg');
	background-size: cover;
}
/*navbar*/
.navbar{
	widows: 100%;
	height: 10vh;
	background-color: rgba(255,255,255,0.5);
}
.logo{
	width: 15vw;
	height: 100%;
	margin-left: 6%;
}
.logo img{margin-top: 3%; transform: scale(0.7);}
.nav-item-box{
	height: 100%;
	margin-right: 3%;
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
}
.nav-item{
	flex: 1;
}
.nav-item h5{
	font-size: 3vh;
	letter-spacing: 2px;
	line-height: 10vh;
	text-align: center;
	font-weight: 700;
	animation: text-show 0.5s 0.3s both;
}
.nav-item h5:hover{
	color: #999;
}
.index{
	width: 100%;
	height: 3vh;
	background-color: rgba(139, 162, 173);
}
.index h6{
	color: #fff;
	font-size: 2vh;
	padding-left: 10%;
	line-height: 3vh;
}
/*Nav-item-mobile*/
.nav-item-box-mobile{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: none;
	transition: all 0.3s;
}
.nav-button{
	width: 20px;
	position: absolute;
	right: 15px;
	top: 0;
	z-index: 100;
	height: 50px;
}
.nav-button span{
	width: 100%;
	height: 3px;
	background-color: #fff;
	position: absolute;
	top: 15px;
}
.nav-button span:nth-child(2){top: 23px;}
.nav-button span:nth-child(3){top: 31px;}
.nav-item-inner{
	width: 100%;
/*	background-color: rgba(255,255,255,1);*/
	visibility: hidden;
	opacity: 0;
}
.nav-item-inner.js-show{
	opacity: 1;
	visibility: visible;
	z-index: 200;
}
.nav-menu{
	width: 100%;
	display: inline-block;
	font-size: 2vh;
	line-height: 8vh;
	text-align: center;
	text-align: left;
}
.nav-menu img{
	position: absolute;
	right: 0;
	top: 10px;
	width: 50px;
	height: 40px;
	vertical-align: middle;
}
.nav-menu li{
	border: 1px solid #fff;
	background-color: rgba(240,240,240,1);
	padding: 0% 5%;
	font-weight: 700;
}
.sub-nav-menu{
	font-size: 1.5vh;
	line-height: 5vh;
	font-weight: 500;
	display: none;
}
.sub-nav-menu li{
	background-color: rgba(204,204,204,1);
	font-weight: 500;
}
.close-btn{
	display: inline-block;
	padding-top: 5%;
	width: 100%;
	background-color: rgba(240,240,240,1);
	height: 6vh;
}
.close-btn span{
	width: 30px;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translateY(-50%) rotate(45deg);
}
.close-btn span:nth-child(2){
	transform: translateY(-50%) rotate(-45deg);
}
.lan-box{display: none;}
/*content*/
.content{
	width: 70%;
	margin: 0 auto;
}
.text-box{
	width: 100%;
	margin-top: 2%;
	text-align: center;
}
.text-box h1{
	font-size: 4vw;
	line-height: 18vh;
	letter-spacing: 3px;
	font-weight: 700;
}
.text-box h5{
	font-size:1vw;
	line-height: 3vh;
	font-weight: 600;
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
/*table*/
.table{
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 80%;
	margin: 0 auto;
	margin-top: 20px;
}
.table h5{
	font-size: 1vw;
	line-height: 4.5vh;
	font-weight: 500;
	padding-top: 10px;
	border-bottom: 1.5px solid rgba(46,70,88,1);
}
.row{
	flex: 1;
	display: flex;
}
.col-1{flex: 1;}
.col-2{flex: 2;}
.col-7{flex: 7;}
.table.mobile{display: none;}
/*footer*/
.footer{
	width: 100%;
	height: 45px;
	text-align: center;
	position: absolute;	
	bottom: 0;
	font-size: 0.8rem;
}
.copyright-box{
	font-weight: 600;
	display: inline-block;
}
.copyright{
	line-height: 45px;
	padding: 0 20px;
	display: inline-block;
}
.copyright-box a{
	line-height: 45px; 
	padding: 0 10px;
	font-weight: 600;
	display: inline-block;
}
.copyright-box a h5:hover{color: #fff;}

/*Meida query*/
/*Laptop*/
@media (max-width: 1600px){
	.logo img{margin-top: 0;}
	.index h6{padding-left: 7%;}
}
@media (max-width: 1400px){
	.navbar{height: 65px;}
	.nav-item h5{font-size: 1.2rem; line-height: 65px;}
	.logo img{transform:scale(0.5); margin-top: -10px;}
	.menu img{height: 120px;}
}
/*iPad pro*/
@media (max-width: 1024px){
	.nav-item-box{display: none; visibility: hidden;}
	.nav-item-box-mobile{display: block;}
	.nav-button{top: 10px;}
	.wrapper{background-color: rgba(227,227,227,1); background-image: none;}
	.text-box{margin-top: 0%; text-align: center;}
	.content{width: 95%;}
	.content h2{top: 120px;}
	.footer{padding-left: 7%;}
	.footer h5{font-size: 0.9rem;}
	.logo{margin-left: -5%;}
	.text-box h1{font-size: 5vh; line-height: 15vh;}
	.text-box h5{font-size: 1.5vh; line-height: 2.5vh; width: 100%;}
	.table h5{font-size: 2vh;}
}
/*iPad mini*/
@media (max-width: 768px){
	
}
/*iPhone*/
@media (max-width: 575px){
	/*menu*/
	.navbar{height: 50px;}
	.nav-button{top: 0px;}
	.index{display: none;}
	/*footer*/
	.copyright-box{width: 100%; text-align: center;}
	.copyright-box a{display: none;}
	.copyright{display: inline-block; width: 100%;}
	.footer{margin-top: 20px; height: 5vh;}
	.footer h5{font-size: 1vh;}
	/*Language*/
	.lan-box{display: none;}
	/*Layout*/
	.logo{margin-left: -100px;}
	.logo img{transform: scale(0.3); margin-top: -15px;}
	.content h2{display: none;}
	.table{width: 100%;}
	.table h5{font-size: 1.5vh;}

}