*{
    margin: 0;
    padding: 0;
}
@font-face{
    font-family: Trebuchet;
    src: url(../webfonts/trebuc.ttf);
}
@font-face{
    font-family: won;
    src: url(../webfonts/White_On_Black.ttf);
}
@font-face{
    font-family: roboto;
    src: url(../webfonts/RobotoMono.ttf);
}
:root{
    --primary: #CC9966;
    --secondary: #996633;
    --light: #FFCC99;
}
body{
    font-family: Trebuchet;
}
.valid{
    color: rgb(0, 255, 0) !important;
}
.invalid{
    color: red !important;
}
#wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}
#nav_wrap{
    background: var(--secondary);
    height: 100%;
}
.hidden{
    display: none;
}
.shown{
    display: block;
}
#page_wrap{
    background: var(--light);
    height: 100%;
}
.container{
    width: 100%;
    height: 100%;
    position: relative;
}
.logo{
    width: 100%;
}
.logo img{
    width: 100%;
}
nav{
    display: block;
    padding-top: 40px;
}
nav ul{
    padding: 0;
    margin: 0;
}
nav li{
    display: block;
    list-style: none;
    padding: 30px 10px;
    cursor: pointer;
    color: var(--light);
}
nav li:hover{
    background-color: var(--primary);
    color: var(--light);
}
.container i{
    color: var(--primary);
    font-size: 28px;
    padding: 10px;
}

.social{
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    width: 100%;
}
.container i:hover{
    color: var(--light);
}
.active{
    background: var(--light);
    color: var(--secondary);
}

/*======HOME==========*/
#home, #showcase, #services, #about{
    width: 100%;
    background: var(--light);
    position: absolute;
}
#showcase, #services, #about{
    overflow-y: scroll;
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary); 
  }
::-webkit-scrollbar-thumb {
    background: var(--primary); 
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary); 
  }
#home{
    height: 100%;
    background-image: url(../images/landbkg.JPG);
    background-size: cover;
    justify-content: center;
    align-items: center;
}
.on_home{
    display: flex;
}
.on{
    display: block;
}
.off{
    display: none;
}
.inner_container{
    text-align: center;
}
.inner_container h1{
    font-family: won;
    color: #fff;
    display: block;
    padding: 25px 0;
}
.inner_container h3{
    color: #fff;
    font-family: roboto;
    display: block;
    padding: 25px 0;
}
.dots{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 10px;
}


/* SHOWCASE */
#showcase{
    left: 0;
    top: 0px;
    height: 78px;
}
.show_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}

.row img{
    width: 100%;
}

/* SERVICES */
#services, #about{
    left: 0;
    top: 0px;
    height: 78px;
    overflow-y: scroll;
}
.service_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 10px;
}
.service{
    flex-basis: 300px;
    margin-bottom: 30px;
}
.service img{
    width: 100%;
}

/* ABOUT */
#about{
    /* display: block; */
}
.about_container p{
    padding: 30px;
    flex-basis: 90%;

}
.about_container form{
    flex-basis: 80%;
    margin: 5px auto;
    text-align: center;
}
.about_container form *{
    display: block;
    width: 80%;
}
.about_container{
    flex-wrap: wrap;
}
form{
    /* text-align: center; */
}
form input{
    height: 40px;
    background-color: var(--light);
    border: 2px solid var(--secondary);
    width: 100%;
    padding: 10px;
}
textarea{
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    background-color: var(--light);
    border: 2px solid var(--secondary);
    padding: 10px;
}
input[type=submit]{
    width: 20%;
    cursor: pointer;
    margin: 0 auto;
    color: #996633;
}
input[type=submit]:hover{
    background: var(--secondary);
    color: #FFCC99;
}
form small{
    padding: 10px;
}
