/* Generic Styling */
body {
	font-family: "Open Sans", sans-serif;
}

a {
	text-decoration: none;
	outline: none;
}

ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
}

.btnn {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #000;
	color: #fff;
	border-radius: 5px;
	transition: 0.5s;
	border: 1px solid #000;
}

.btnn:hover {
	color: #fff;
	background-color: transparent;
}

.btnn__dark {
	background-color: #d0ae7b;
	border-color: #d0ae7b;
}
/* Generic Styling */

#site_header {
	background-color: #1a1a1a;
	padding-top: 20px;
	padding-bottom: 20px;
}

#site_header .logo {
	display: flex;
	height: 100%;
	align-items: center;
}

#site_header .nav_con {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

#site_header .nav_con ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: flex;
}

#site_header .nav_con ul li {
	padding-left: 10px;
	padding-right: 10px;
}

#site_header .nav_con ul li a {
	color: #fff;
}

#site_header .right_con {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}

#site_header .right_con .btnn__dark {
	margin-left: 10px;
}

#banner img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

#banner {
	position: relative;
	z-index: 0;
}

#banner .shade {
	height: 100%;
	position: absolute;
	top: 0;
	left: 30%;
	transform: translateX(-50%);
	width: 40%;
	background-color: #d0ae7b;
	z-index: 1;
	opacity: 0.64;
	clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

#site_footer {
	position: relative;
	background-color: #1a1a1a;
	color: #fff;
}

#site_footer .row {
	padding-top: 54px;
	padding-bottom: 34px;
	border-bottom: 1px solid #ffffff;
}

#site_footer .container .left_con h6 {
	font-size: 18px;
	font-weight: 700;
}

#site_footer .container .left_con p {
	font-weight: 300;
}

#site_footer .container .center_con h6 {
	font-size: 18px;
	font-weight: 700;
}

#site_footer .container .center_con li {
	font-weight: 300;
	margin-bottom: 10px;
}

#site_footer .container .center_con li a {
	color: #fff;
}

#site_footer .container .right_con h6 {
	font-size: 18px;
	font-weight: 700;
}

#site_footer .container .right_con p {
	font-weight: 300;
}

#site_footer .container .right_con form input {
	width: 100%;
	margin-bottom: 10px;
	padding: 16px 20px;
	background-color: #fff;
	border: 0px;
	border-radius: 0px;
	border-radius: 5px;
}

#site_footer .container .right_con form input[type="submit"] {
	background-color: #d0ae7b;
	color: #fff;
}

#site_footer .footer_bar {
	padding-top: 25px;
	padding-bottom: 25px;
}

#site_footer .footer_bar p {
	font-size: 12px;
	margin-bottom: 0px;
}

#site_footer .shade {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0%;
	width: 42%;
	background-color: #d0ae7b;
	z-index: 1;
	opacity: 0.64;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

#site_footer .container {
	position: relative;
	z-index: 2;
}

#coming_soon {
	height: 400px;
	position: relative;
	text-align: center;
}

#coming_soon .container {
	height: 100%;
}

#coming_soon .wrapper {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#coming_soon h1 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 4em;
	color: #333;
	-webkit-text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
	-moz-text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
	text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.7);
	word-spacing: 16px;
}

#coming_soon p {
	font-family: "Open Sans", sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	color: #222;
	text-shadow: 0 0 40px #ffffff, 0 0 30px #ffffff, 0 0 20px #ffffff;
}

@media only screen and (min-width: 800px) {
	#coming_soon h1 {
		font-size: 6em;
	}
	#coming_soon p {
		font-size: 1.6em;
	}
}

@media only screen and (max-width: 320px) {
	#coming_soon h1 {
		font-size: 2em;
	}
	#coming_soon p {
		font-size: 1.2em;
	}
}

@media (max-width: 991px) {
	#site_header .logo {
		justify-content: center;
		margin-bottom: 20px;
	}
	#site_header .nav_con {
		margin-bottom: 20px;
	}
	#site_header .right_con {
		margin-bottom: 20px;
		justify-content: center;
	}
	#site_footer .container .left_con {
		margin-bottom: 50px;
	}
	#site_footer .container .center_con {
		margin-bottom: 50px;
	}
	#banner .shade {
		display: none;
	}
}
