.landing-wrapper{
	width: 100vw;
	height: 100vh;
	background-color: var(--background_color);
}
.landing{
	width:100%;
	height:100%;
	display:grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 1fr;
}
.landing-header-wrapper{
	background-color: #fff;
}
.landing-header{
	padding-top: 1em;
	padding-bottom: 1em;
	width:50%;
}
.landing-header img{
	width:100px;
	height:50px;
}
.landing-middle-wrapper{

}
.landing-middle{
	width:50%;
}
.landing-bottom-wrapper{

}
.landing-bottom{
	width:50%;
}

/* Tablet */
@media (max-width: 992px) {
    .landing-header, 
    .landing-middle, 
    .landing-bottom{
	    width:70%;
     }
}

/* Mobile */
@media (max-width: 600px) {
    .landing-header,
    .landing-middle, 
    .landing-bottom{
	    width:90%;
     }
}