* {
	padding: 0;
	margin: 0;
}
.wrap {
	width: 100%;
	height: 130vh;
	background: url('../img/bg.jpg') no-repeat top center / 100%;
	position: relative;
}
img {
	max-width: 100%;
}
.logo {
	position: absolute;
	top: 5%;
	left: 22%;
	width:200px;
}
.slogan {
	position: absolute;
	top: 25%;
	left: 15%;
	width:400px;
}
.footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    background: #000;
    left: 0;
    width: 100%;
    padding:1%;
}
.footer p {
	color: #fff;
	margin-bottom: 0.1rem;
}
@media (max-width:768px) {
	.logo {
		left: 50%;
		transform: translateX(-50%);
	}
	.slogan {
		left: 50%;
		width: 100%;
		transform: translateX(-50%);
	}
}