@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i&display=swap');

* {
	font-family: 'Source Sans Pro', sans-serif;
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	font-size: 100%;
	background: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body a {
	text-decoration: none;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	font-family: 'Source Sans Pro', sans-serif;
	cursor: pointer;
}

body img {
	max-width: 100%;
}

a:hover {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

li {
	list-style-type: none;
}

p {
	margin: 0;
	font-size: 17px;
	line-height: 1.8em;
	letter-spacing: 1px;
	color: #707579;
}

ul {
	margin: 0;
	padding: 0;
}

.full-width {
	float: left;
	width: 100%;
	position: relative;
}

.container {
	float: left;
	width: 1140px;
	margin: 0 calc((100% - 1140px)/2);
	padding: 0 25px
}

.container p {
	margin: 0;
	font-size: 17px;
	line-height: 1.8em;
	letter-spacing: 1px;
	color: #C1C1C1;
	padding: 50px 0 30px;
	text-align: center;
}

.banner {
	display: block;
	width: 100%;
	height: 80%;
	background: url("../images/banner1.jpg") no-repeat;
	background-position: 0 center;
	background-size: cover;
	position: relative;
}

.banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.banner .logo {
	position: absolute;
	top: 25px;
	left: 30px;
	z-index: 9999;
}

.welcome {
	position: absolute;
	width: 850px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	margin: 0;	
}

.welcome h2 {
	letter-spacing: 1px;
	line-height: 1.2em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
	font-size: 72px;
	font-weight: 100;
	color: #fff;
}

.welcome a {
	font-size: 17px;
	letter-spacing: 2px;
	color: #fff;
	padding: 15px 25px;
	border: 2px solid #fff;
	margin-top: 20px;
	border-radius: 4px;
	display: inline-block;
}

.welcome a:hover {
	background: rgba(255, 255, 255, 0.2);
}

.sticky-title {
	position: absolute;
	left: 50%;
	top: -2.7em;
	width: 14em;
	height: 2.7em;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.25em;
	line-height: 3.25em;
	text-align: center;
	text-transform: uppercase;
	display: block;
	margin-bottom: -3.25em;
	margin-left: -7em;
}

.sticky-title:before {
	content: '';
	position: absolute;
	bottom: -38px;
	left: -35px;
	width: 35px;
	height: 38px;
	background: url("../images/shadow.png") no-repeat;
}

.sticky-title:after {
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	transform: scaleX(-1);
	content: '';
	position: absolute;
	bottom: -38px;
	right: -35px;
	width: 35px;
	height: 38px;
	background: url("../images/shadow.png") no-repeat;
}

.coming-soon {
	background: #1A3053;
	padding-bottom: 4rem !important;
}

.coming-soon .sticky-title {
	background: #1A3053;
	color: #FFF;
}

.copyright {
	text-align: center;
	font-size: 17px;
	line-height: 1.8em;
	letter-spacing: 1px;
	color: #C1C1C1;
}

p a {
	font-size: 17px;
	line-height: 1.8em;
	letter-spacing: 1px;
	color: #C1C1C1;
	text-decoration: underline;
}

@media only screen and (max-width:1140px)
{
	.container {
	    float: left;
	    width: 100%;
	    margin: 0;
		padding: 0 30px;	
	}
 
}

@media only screen and (max-width:1024px)
{
	.welcome {
	    width: 100%;
	    top: 50%;
	    left: 0;
	    transform: translate(0, -50%);
	}
	
	.welcome h2 {
		font-size: 7.2vw;
	}
	
	.banner {
		background-position: 60% 0 !important;
    		background-size: auto 100%;
	}
}

@media only screen and (max-width:414px)
{
	.banner:before {
		background: rgba(0, 0, 0, 0.5);
	}
	.welcome h2 {
	    font-size: 10vw;
	    padding: 0 10vw;
	}
	
	.welcome a {
	    font-size: 4.1063vw;
	    padding: 3.6232vw 6.0386vw;
	}
	
	.sticky-title {
		left: 10%;
		top: -3em;
		width: 80%;
		margin: 0;
		font-size: 5vw;
		height: 15vw;
	}
	
	.container p {
		font-size: 16px;
		padding: 40px 5px 30px;
		text-align: left;
	}
}






























