@charset "utf-8";
@font-face {
	src: url(Fonts/Montserrat/Montserrat-Light.ttf);
	font-family: Montserrat;
	font-style: normal;
	font-weight: 300;}

@font-face {
	src: url(Fonts/Montserrat/Montserrat-Regular.ttf);
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;}

@font-face {
	src: url(Fonts/Montserrat/Montserrat-Medium.ttf);
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;}

*{
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body{
	font-family: 'Montserrat', sans-serif;
}

nav{
	overflow: hidden;
	position: fixed;
 	top: 0;
	background-color: white;
	height: 100vh;
	width: 100%;
	z-index: 1;
}

nav .logo{
	float: left;
	font-family: Georgia;
	color: #a1b1bb;
	font-size: 20px;
	line-height: 40px;
	padding: 0 50px;
	font-weight: normal;
}

nav ul{
	float: right;
	margin-right: 20px;
}

nav ul li{
	display: inline-block;
	font-family: Montserrat;
	font-weight: 300;
	color: #a1b1bb;
	text-transform: uppercase;
	line-height: 40px;
	margin: 0 5px;
}

nav ul li a{
	color: #a1b1bb;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 7px 13px;
 }

a.active,a:hover{
	transition: .2s;
	color: #3d5b6b;
	font-weight: 500;
	/*text-shadow: -.25px -.25px 0 black, 
                .25px .25px black;*/
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: white;
	text-align: center;
	height: 25px;
	z-index: 1;
}

.credit {
	float: left;
	color: #a1b1bb;
	font-size: 10px;
	line-height: 10px;
	margin-left: 50px;
	margin-top: 6px;
}

.footer ul {
	float: right;
	margin-right: 20px;
}

.footer ul li {
	display: inline-block;
	font-family: Montserrat;
	font-size: 10px;
	color: #a1b1bb;
	margin-right: 20px;
}

.checkbtn{
	font-size: 15px;
	color: #a1b1bb;
	float: right;
	line-height: 40px;
	margin-right: 20px;
	cursor: pointer;
	display: none;
}

#check{
	display: none;
}


.landing{
	/*display: grid;
	grid-template-columns: 200px 1fr 200px;
	grid-template-rows: 1fr 35px 1fr 1fr;*/
	justify-items: center;
	height: 100vh;
	margin-top: 40px;
	width: 100%;
	background: url(Images/InvestorImage.jpg) no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 2;
}

.whitebox{
	/*display: grid;
	grid-template-columns: 100px 1fr 100px;
	grid-template-rows: 60px 50px 1fr;*/
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, .7);
	/*height: calc(100vh - 160px);*/
	/*height: 75vh;*/
	height: calc(100vh - 400px);
	/*Be center of the background image*/
	position: absolute;
	width: 70%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
}

.login_form{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.headline01{
	/*grid-column: 2/3;
	grid-row: 2/3;*/
	text-align: center;
	font-weight: 500;
	color: #3d5b6b;
	font-size: 24px;
	line-height: 20px;
	letter-spacing: 2px;
	margin-top: 10px;
}

.login_form .input01{
	display: block;/*item display a separate line*/
	margin-left: auto;
    margin-right: auto;
	height: 55px;
	width: 500px;
	margin-top: 40px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #85898b;
	background-color: white;
	background-image: url('Images/UsernameIcon.png');
	background-position: 20px 10px; 
	background-repeat: no-repeat;
	padding-left: 50px;/*word inside position*/
	font-size: 18px;
	border: none;
	border: 1px solid #bcbec0;
}

.login_form .input02{
	display: block;
	margin-left: auto;
    margin-right: auto;
	height: 55px;
	width: 500px;
	margin-top: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #85898b;
	background-color: white;
	background-image: url('Images/PasswordIcon.png');
	background-position: 20px 10px; 
	background-repeat: no-repeat;
	/*align-items: center;*/
	padding-left: 50px;
	font-size: 18px;
	border: none;
	border: 1px solid #bcbec0;
}

.login_form #username_error,
.login_form #pass_error{
	display: block;
	margin-left: auto;
    margin-right: auto;
	margin-top: 10px;
	width: 345px;
	font-size: 15px;
	color: white;
	background: #3d5b6b;
	text-align: center;
	padding: 5px 8px;
	border-radius: 3px;
	display: none;	
}

.login_form button{
	display: block;
	margin-left: auto;
    margin-right: auto;
	background: #3e9492;
	border: none;
	/*margin: 45px 0 30px 0;*/
	height: 45px;
	width: 100px;
	margin-top: 30px;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 3px;
	font-size: 15px;
	color: white;
	cursor: pointer;
	border-radius: 30px;
	transition: .5s;
}

.login_form button:hover{
	background: #64c8c3;
}


/*--------------------------Mobile Layout-------------------------*/

@media (max-width: 900px){	
.checkbtn{
	display: block;
}

.landing{
	position: relative;
	/*display: grid;
	grid-template-columns: 60px 1fr 60px;
	grid-template-rows: 0.5fr 20px 1fr 1fr;*/
	right: 0;
	margin-top: 40px;
	height: 100%;
	width: 100%;
	background: url(Images/InvestorImage_Portrait.jpg) no-repeat;
	background-position: center;
	transition: margin-right 0.5s ease;
    position: fixed;
	z-index: 1;
}	
	
.whitebox{
	/*display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows: 20px 35px 1fr;*/
	/*height: calc(100vh - 160px);*/
	/*height: 75vh;*/
	/*height: calc(100vh - 100px);*/
	align-items: center;
	/*justify-content: center;*/
	margin-top: -80px;
	height: 450px;
	width: 80%;
}	
	
.headline01{ 
	/*grid-column: 2/3;
	grid-row:2/3;*/
	font-weight: 500;
	color: #3d5b6b;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 2px;
	}	
	
.login_form .input01{
	margin-left: auto;
    margin-right: auto;
	height: 50px;
	width: 270px;
	margin-top: 40px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #85898b;
	background-color: white;
	background-image: url('Images/UsernameIcon.png');
	background-position: 10px 10px; 
	background-repeat: no-repeat;
	padding-left: 40px;/*word inside position*/
	font-size: 18px;
	border: none;
	border: 1px solid #949598;
}

.login_form .input02{
	display: block;
	margin-left: auto;
    margin-right: auto;
	height: 50px;
	width: 270px;
	margin-top: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #85898b;
	background-color: white;
	background-image: url('Images/PasswordIcon.png');
	background-position: 10px 10px; 
	background-repeat: no-repeat;
	/*align-items: center;*/
	padding-left: 40px;
	font-size: 18px;
	border: none;
	border: 1px solid #949598;
}	
	
.login_form #username_error,
.login_form #pass_error{
	width: 245px;
	font-size: 12px;
	padding: 5px 8px;
}	
	
.login_form button{
	margin-top: 60px;
}	
	
nav .logo{
	float: left;
	font-family: Georgia;
	color: #a1b1bb;
	font-size: 15px;
	line-height: 40px;
	padding: 0 25px;
	font-weight: normal;
}	
	
nav ul{
	background: white;
	width: 100px;
	height: 100vh;
	padding-top: 10px;
	right: 0;
	/*let menu move to left 20px*/
	margin-right: 20px;
	transition: all .5s;
	z-index: -2;
}
	
nav ul li{
	display: block;
	margin: 50px 100px 0 -30px;
	line-height: 10px;
}
	
nav ul li a {
	font-size: 13px;
}
	
a:hover,a.active{
	transition: .2s;
	font-weight: 500;
}
	
.credit {
	float: left;
	font-size: 8px;
	line-height: 10px;
	margin-left: 25px;
	margin-top: 6px;
	z-index: 999;
}

.footer{
	position: fixed;
	z-index: 1;
	}	
	
.footer ul {
	float: right;
	margin-right: 10px;
}

.footer ul li {
	display: inline-block;
	font-family: Montserrat;
	font-size: 8px;
	line-height: 10px;
	color: #a1b1bb;
	margin-right: 10px;
}
	
#check:checked ~ .landing{
	margin-right: 180px;
	}	


