@font-face{
	font-family: "SEGOEUI";
	src: url('fonts/SEGOEUI.TTF');
	font-weight: 400;
	font-style: normal;
}

/*==BASIC-SETUP==*/
body {
  font-family: "SEGOEUI";
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #D0BEA6;
  background: #ffffff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin-bottom: 0;
}


.wrapper-cnt {
	background-image: url('images/site-landing-bg.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.inner-cnt {
	max-width: 500px;
	margin: 0 auto;
	background-color: #000000;
	border-radius: 10px;
	padding: 20px;
	margin-top: -190px;
}

.inner-title {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.inner-title p {
	width: 50%;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 20px;
}

.inner-title p:last-of-type {
	text-align: end;
}

.inner-img {
	text-align: center;
	padding: 25px 0 20px;
}

.inner-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.inner-btn a {
	display: inline-block;
	transition: 0.2s;  
	background-color: #ecac4c;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 2px 20px;
}

.inner-btn a:hover {
	opacity: 0.8;
}

.inner-btn1 {
	padding-right: 30px;
}

@media screen and (max-width: 767px) {

	.wrapper-cnt {
		background-size: cover;
	}

	.inner-title p {
		font-size: 12px;
		line-height: 15px;
	}

	.inner-title p br {
		display: none;
	}

	.inner-cnt {
		margin: 0 auto;
		padding: 10px;
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 0;
	}

	.inner-btn a {
		font-size: 15px;
	}

	.wrapper-cnt {
		display: block;
		padding-top: 120px;
	}
	

}



