*{
    margin: 0;
    padding: 0;
    border: 0;
}

body{
    background-color: rebeccapurple;
    font-family: sans-serif;
}

#logo{
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99;
    
}

#logo img{
    max-width: 130px;
    top: 10px;
    left: 10px;
}


#opener{
    width: 100vw;
    height: calc(100vh);
    background: url("/content/img/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    
}
#opener h1{
    padding: 60px;
    text-shadow: 2px 2px black;
    font-size: 5.2em;
    font-weight: bolder;
    position: absolute;
    color: white;
    letter-spacing: 0.5em;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
    
}

#about{
    width: 100vw;
    height: auto;
    background-color: #F4EEED;

}

#about .about-img{
    max-width: 30em;
}

#about .about-text{
    text-align: center;
    
}

#about .about-text h1{
    font-weight: bolder;
    letter-spacing: 0.15em;
    margin-top: 3em;
}

#about .mission-text{
    text-align: center;
   
}

#about .vision-text{
    text-align: center;
    
}

#about .mission-text h1{
    font-weight: bolder;
    letter-spacing: 0.15em;
    margin-top: 3em;
}

#about .vision-text h1{
    font-weight: bolder;
    letter-spacing: 0.15em;
    margin-top: 3em;
}

#business{
    background-color: #201E2D;
    width: 100vw;
    height: auto
}

#business h1{
    color: whitesmoke;
    letter-spacing: 0.15em;
}

#business .references img{
    
    
}

#certificates{
    width: 100vw;
    height: 100px;
    background-color: rgb(0, 0, 0,0.5);
    position: absolute;
    bottom: 100px;
}

#certificates img{
    max-height: 100px;
    filter: grayscale(100%);
}

.hamburger{
    position: fixed;
    right: 20px;
    top: 40px;
    z-index: 99;
    
    
}

#response-menu{
    width: 40px;
    height: 28px;
    position: fixed;
    top: 53px;
    right: 35px;
    
    transition: 0.5s;
}



#response-menu.toggle{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    transition: 0.5s;
    
}

#response-menu ul{
    position: absolute;
    top: 50%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity: 0;
    transition: 0.5s;
    list-style: none;
}

#response-menu ul.show{
    position: absolute;
    top: 50%;
    left:50%;
    transform:translate(-50%,-50%);
    transition: 0.5s;
    opacity: 1;
}

#response-menu ul a{
    text-decoration: none;
}

#response-menu ul li{
    padding: 20px;
    letter-spacing: 0.5em;
    font-weight: bolder;
    font-size: 24px;
}

.hide-text{
    display: none;
}

.ml15 {
    font-weight: 800;
    font-size: 3.8em;
    text-transform: uppercase;
    letter-spacing: 0.5em;
  }
  
  .ml15 .word {
    display: inline-block;
    line-height: 1em;
  }


/*Media Query*/

@media screen and (max-width: 1200px) {
    #opener h1{
        padding: 60px;
        text-shadow: 2px 2px black;
        font-size: 1em;
        font-weight: bolder;
        position: absolute;
        color: white;
        letter-spacing: 0.5em;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        
        
    }
    #about{
        text-align: center;
    }
    #about .about-img{
        max-width: 20em;
    }
    #response-menu ul li{
        padding: 20px;
        letter-spacing: 0.5em;
        font-weight: bolder;
        font-size: 18px;
    }
  }