
* {
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}

body {
	background-image: url('../img/bg-small.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #3a3a3a;
	font-family: Arial, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

@media(min-width: 1200px) {
	body {
		background-image: url('../img/bg-medium.jpg');
	}
}

@media(min-width: 2500px) {
	body {
		background-image: url('../img/bg-large.jpg');
	}
}

a, a:hover, a:focus {
	color: #3a3a3a;
	text-decoration: none;
}
	a:hover {
		text-decoration: underline;
	}

.text-center {
	text-align: center;
}


.text-justify {
	text-align: justify;
	-webkit-hyphens: auto;
	   -moz-hyphens: auto;
		-ms-hyphens: auto;
			hyphens: auto;
}

.container {
	margin: 0 auto;
	padding-top: 15px;
	width: 80%;
}
@media(min-width: 768px) {
	.container {
		width: 55%;
	}
}
@media(min-width: 991px) {
	.container {
		width: 30%;
	}
}

.container img {
	display: block;
	height: auto;
	max-width: 100%;
	width: auto;
}

.logo {
	margin: 0 auto;
	margin-top: 10%;
	margin-bottom: 10px;
	max-width: 80% !important;
}

.comingsoon {
	margin: 0 auto;
	margin-bottom: 20px;
	max-width: 65% !important;
	width: auto;
}

h1 {
	background-image: url('../img/banner.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	color: #fff;
	display: block;
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 0.25em;
	line-height: 69px;
	text-align: center;
	text-transform: uppercase;
	margin: 0 auto;
	margin-bottom: 25px;
	max-width: 100%;
	width: 395px;
	height: 69px;
}
@media(max-width: 767px) {
	h1 {
		font-size: 20px;
		line-height: 48px;
		width: 275px;
		height: 48px;
	}
}

h2 {
	font-size: 18px;
	font-weight: normal;
}
@media(max-width: 767px) {
	h2 {
		font-size: 14px;
	}
}
