* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
textarea:focus, input:focus, select:focus, button:focus, option:focus{
	outline: none;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: none;
	outline: none;

	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

body {
	width: 100%;
	height: 100%;
	font-size: 1em;
	box-sizing: border-box;
	line-height: 1.5em;
	background-color: white;
	color: black;
	position: relative;
	font-family: 'Poppins', sans-serif;
	background-image: url(/assets/img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

html {
	box-sizing: border-box;
	height: 100%;
}



.content {
	height: 100vh;
	width: 100%;
	position: absolute;
}

.middle-content {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;

}

.middle-content img {
	width: 550px;
	margin: 0 auto;
	display: block;
}

.middle-content h1 {
	font-weight: 700;
	text-align: center;
	margin-top: 5px;
	color: #E30613;
}

.middle-content h2 {
	font-weight: 700;
	font-size: 1.3em;
	text-align: center;
	margin-top: 30px;
	color: #1D1D1B;
	padding: 15px;
	background-color: white;
}


.middle-content h3 {
	font-weight: 700;
	font-size: 1.2em;
	text-align: center;
	color: #fff;
	margin-bottom: 15px;
	padding: 5px 0;
	background-color: #000;
	width: 100%;
	float: left;
}

.middle-content a {
	color: #000;
}

.middle-content p a {
	text-align: center;
	margin-top: 5px;
	width: 100%;
	background-color: white;
	padding: 10px;
}

.middle-content p {
	text-align: center;
}

footer {
	width: 100%;
	margin-top: 30px;
	background-color: white;
	padding: 10px;
	overflow: auto;

}

footer div {
	float: left;
	width: 50%;
}

footer div:nth-child(2) {
	float: right;
	text-align: right;
}


.social_link {
	width: 100%;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	background-color: #000;
	padding: 10px;
	margin-top: 20px;
	color: white !important;
	font-weight: 700;
}

.social_link i {
	font-size: 1.2em;
}

@media all and (max-width: 730px) {
	.middle-content {
		width: 100%;
		padding: 20px;
	}
}

@media all and (max-width: 600px) {
	footer div {
		width: 100%;
		text-align: center !important;
		float: left !important;
		margin-bottom: 20px;
	}

	.middle-content img {
		width: 100%;
	}
}