


@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: 'Ubuntu', sans-serif;
}

body {
	background:url("../img/bg-img.jpg");
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	min-width: 100vw;
	min-height: 100vh;
	
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.logo	{
	margin: 1.5em 0 0 0;
}

.login_area	{
	padding: 1em 0 1.5em 0;
}

.form-label	{
	min-height: 30px;
	color: #000;
	font-weight: 400;
	margin-top: 0.7em;
}

.form-control{
	min-height: 50px;
	color: #000;
	font-weight: 400;
	width: 100%;
}
.btn_form	{
	background-color: #2da3db;
	min-height: 40px;
	width: 100px;
	border: none;
	color: #fff;
}



.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #2da3db;
  color: white;
  text-align: center;
	height: 100%;
	padding: 1em 0;
	margin-top: 2.8em;
}


.footer2 {
  background-color: #2da3db;
  color: white;
	padding: 2em 0;
	
}

.footer-container	{
	padding: 0.5em 0;
}

.menu	{
	padding: 0.2em 0;
	color: #fff;
	font-size:13px;
	text-align: left;
	font-weight: 300;
	transition: 0.4s;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}

.menu:hover	{
	color: #B4FDFF;
	text-decoration: none;
}

.address	{
	padding: 0.2em 0;
	color: #fff;
	font-size:13px;
	text-align: left;
	font-weight: 300;
	transition: 0.4s;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}

.phone	{
	padding: 0.2em 0;
	color: #fff;
	font-size:14px;
	text-align: left;
	font-weight: 300;
	transition: 0.4s;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}

.termspagebg	{
	background-color: #fff;
	padding-bottom: 5em;
	font-family: 'Poppins', sans-serif;
	
}
.terms	{
	padding: 1em 0;
}

.terms	h1	{
	padding: 1em 0;
	color: #000;
	font-size:30px;
	text-align: left;
	font-weight: 800;
	transition: 0.4s;
	text-decoration: none;
}

.terms	p	{
	color: #000;
	font-size:14px;
	text-align: left;
	font-weight: 300;
	transition: 0.4s;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	line-height: 25px;
	text-align: justify;
}


@media only screen and (min-width: 420px) and (max-width: 991px) {
    .logo	{
	padding: 1em 0;
	background: url("../img/logo.png");
	min-height: 250px;
		min-width: 300px;
}



