.doors
{
    max-height: 50%;
    float: right;
    display: block;
}
#invline{
    max-height: 28vh;
    position: absolute;
    top: 0; 
    left: 55%;
}
#aboutline
{
    max-height: 35vh;
    position: absolute;
    top: 0; 
    left: 55%;
}
#contactline
{
    max-height: 34vh;
    position: absolute;
    top: 0; 
    left: 63.5%;
}
#textme{
    
    font-family: 'Poppins', sans-serif;
    position: absolute;
    width: 35%;
    margin-top: 26vh;
    margin-left: 50%;
    z-index: 88;
}
.justify{
    text-align: justify;
}
#abouttext{
    font-size: 10pt;
    padding-bottom: 0;
    padding-top: 0;
    margin: 0 auto 0 auto;
}
#abouttext1{
    font-size: 10pt;
    padding-bottom: 0;
    padding-top: 15pt;
    margin: auto auto 0 auto;
}
#abouttitle 
{
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 0;
    margin-top: 0;
}
.container
{
    margin-left: 63%;
    position: absolute;
    height:100%;
   
}
#overlayer
{
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    z-index: 99;

}
#contact
{
    margin-top: 33vh;
    margin-left: auto;
    margin-right: auto;
    width: 40vh;
    height: 40vh;
    display: none;
    text-align: center;
    z-index: 100;
    background-color: white;
    border: 1px solid #D2AC08;
}
#sbtn{
    width: 33%;
    margin-top:  1em;
    outline: none;
    border: none;
    font-family: "Poppins" , serif;
    font-size: 15pt;
    color: white;
    background-color: #D2AC08;
}
.input2
{
    margin: 0 auto 0 auto;
    line-height: 1em;
    width: 80%;
    margin-bottom: 1.5em;
    margin-top: 1em;
    background: white;
    font-size: 10pt;
    border-bottom: none;
    outline:none;
    border:1px solid grey;
    
}
.input2:focus{
    
    border:1px solid grey;
    outline: none;
}
textarea{
    font-family: "Poppins" , serif;
    font-size: 10pt;
    width: 80%; 
    resize: none;
    overflow-y: hidden;
    overflow-x: hidden;
    outline: none;
    border:1px solid grey;
}
::-webkit-input-placeholder
{
    color: lightslategray;
}

textarea:focus
{
    outline: none; 
    
    border:1px solid grey;
}
#ov
{
    margin-left: 63%;
    position: absolute;
    height:100%;
}
body
{
width: 100%;
height: 100%;
overflow-x: hidden;
overflow: scroll;
}
.title
{
    letter-spacing: 1.5px;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    float: left;
    top: 10px; 
    left: 10px;
    text-align: left;
    width: 30%;
    height: 40%;
}
#tt
{
        margin-top:15px;
        margin-left:15px;
        letter-spacing: 1.5px;
}
#t2
{
    cursor: pointer;
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28.5pt;
    top: 10px; 
    left: 10px;
}
#t1
{
    cursor: pointer;
    letter-spacing: 1.5px;
    font-size: 30pt;
    margin-top: 0;
    margin-bottom: 0;
    top: 10px; 
    left: 10px;
}
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * All rights reserved
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */


 
 a
 {
   text-decoration: none;
   color: #232323;
   
   transition: color 0.3s ease;
 }
 
 a:hover
 {
   color: tomato;
 }
 
 #menuToggle
 {
   display: block;
   position: relative;
   top: 20px;
   z-index: 1;
   
   -webkit-user-select: none;
   user-select: none;
 }
 
 #menuToggle input
 {
   display: block;
   width: 40px;
   height: 32px;
   position: absolute;
   top: -7px;
   left: -5px;
   
   cursor: pointer;
   
   opacity: 0; /* hide this */
   z-index: 2; /* and place it over the hamburger */
   
   -webkit-touch-callout: none;
 }
 
 /*
  * Just a quick hamburger
  */
#ghost
  {    text-align: center;
    width: 20vh;
    padding: 10px 10px 10px 10px;
    border: 1px solid black;}

 #menuToggle span
 {
   display: block;
   width: 33px;
   height: 4px;
   margin-bottom: 5px;
   position: relative;
   
   background: black;
   border-radius: 3px;
   
   z-index: 1;
   
   transform-origin: 4px 0px;
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
 }
 
 #menuToggle span:first-child
 {
   transform-origin: 0% 0%;
 }
 
 #menuToggle span:nth-last-child(2)
 {
   transform-origin: 0% 100%;
 }
 
 /* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
 #menuToggle input:checked ~ span
 {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #232323;
 }
 
 /*
  * But let's hide the middle one.
  */
 #menuToggle input:checked ~ span:nth-last-child(3)
 {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }
 
 /*
  * Ohyeah and the last one should go the other direction
  */
 #menuToggle input:checked ~ span:nth-last-child(2)
 {
   transform: rotate(-45deg) translate(0, -1px);
 }
 
 /*
  * Make this absolute positioned
  * at the top left of the screen
  */
 #menu
 {
   position: absolute;
   width: 300px;
   padding-left: 0;
   margin-top:20px;
   background:white;
   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text in safari */
   
   transform-origin: 0% 0%;
   transform: translate(-100%, 0);
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
 }
 
 #menu li
 {
   padding: 10px 0;
   font-size: 22px;
 }
 
 /*
  * And let's slide it in from the left
  */
 #menuToggle input:checked ~ ul
 {
   transform: none;
 }

#form
{
    position: absolute;
    z-index: 500;
    margin-top: -13px;
    margin-left: 60px;
    
}
 .formss, label 
 {
     font-family: "Poppins", serif;
     font-size: 25px;
     display: inline-block;
     width: auto;
     
 }
 .formss, input 
 {
     outline: none;
     border:none;
     border-bottom: 1px solid black;
     font-family: "Poppins", serif;
     font-size: 25px;
     line-height: 20pt;
     display: inline-block;
     width: 32px;
 }
input:focus{
    outline: none;
    box-shadow: none;
 }
.overlay
{
    z-index: 5001;
    text-align: center;
}
.overlay:hover
{
    background: rgba(247, 237, 236, 0.6);
}
.inner
{
    display: none;
    height: 50%;
    margin-top: 25%;
    line-height: 50%;
    position: absolute;
    text-align: left;
    width: 80%;
    margin-left: 20%;
    
    font-family: "Poppins", serif;
}
.inner,p{
    padding-left: 0px;
    font-size: 15pt;
  letter-spacing: 1px;
}
.inner, h4
{
    letter-spacing: 1.5px;
    font-size: 18pt;
    margin-bottom: 0.5em;
    line-height: 21pt;

}