/*animate*/
@keyframes loopScale {
	0% { transform: scale(1,1) }
	60% { transform: scale(1,1) }
	80% { transform: scale(1.2,1.2) }
	100% { transform: scale(1,1) }
}
.loopScale {
	animation-name: loopScale;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}
/*html*/
::-webkit-scrollbar {
    display: none;
}
html {
	background: white;
	font-family: Arial, Helvetica, sans-serif;
}
body {
	background: rgb(250,250,250);
	padding-top: 80px;
}
@media(min-width: 768px) {
	body {
		padding-top: 100px;
	}
}
/*bg*/
.bg {
	background: rgb(250,250,250);
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
}
/*header*/
header {
	background: white;
	position: fixed;
	left: 0; top: 0;
	padding: 10px 5%;
	width: 100%;
	box-shadow: 0 0 5px rgb(80,80,80);
	z-index: 10;
	overflow: hidden;
	font-size: 0;
}
@media(min-width: 414px) {
	header {
		padding: 10px 4%;
	}
}
@media(min-width: 768px) {
	header {
		padding: 10px 3%;
	}
}
/*brand*/
.brand {
	float: left;
	margin-bottom: 10px;
}
.logo {
	display: inline-block;
	height: 50px;
}
.coDescribe {
	color: rgb(80,80,80);
	display: inline-block;
	margin-left: 10px;
	vertical-align: bottom;
}
.company {
	font-size: 18px;
	font-weight: 700;
}
.slogan {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1px;
}
@media(min-width: 768px) {
	.brand {
		margin-bottom: 20px;
	}
	.logo {
		height: 60px;
	}
	.company {
		margin-bottom: 3px;
		font-size: 20px;
	}
	.slogan {
		font-size: 10px;
	}
}
/*btnClose*/
.btnClose {
	float: right;
	height: 25px;
	margin-top: 20px;
	transition: transform 0.5s;
	cursor: pointer;
}
.btnClose:active {
	transform: scale(1.5);
}
@media(min-width: 768px) {
	.btnClose {
		margin-top: 30px;
	}
}
/*form*/
.form {
	position: fixed;
	left: 50%; top: 50%;
	transform: translate(-50%,-50%);
}
.form label {
	color: dodgerblue;
	font-weight: 400;
}
.form input {
	font-size: 16px;
	text-align: center;
}
.form a {
	color: dodgerblue;
}
.btnSubmit {
	background: dodgerblue;
	color: white;
}