*{
    box-sizing:border-box;
    font-family:sans-serif;
    margin:0;
    padding:0;
    
}
body{
    display: grid;
    width: 100%;
    grid-template-columns:minmax(10%, 30%) 960px minmax(10%,30%);
    grid-template-rows: 10% 5% auto auto auto auto;
    background-color: #1B1B1B;
    color: white;
}

header{
    grid-area:1/1/2/-1;
    text-align: center;
    margin:10px 0 10px 0;

}

header img{
    height: 100%;
    width:auto;
}

nav{
    padding-top: .3%;
    position:sticky;
    top:0;
    width:100%;
    grid-area:2/1/3/-1;
    background-color:white;
    text-align: center;
    margin:5px;
    z-index: 3;
}
nav ul{
    height:100%;
}
nav li{
    margin:0;
    display: inline-block;
    padding-top: .3%;
    padding-bottom: .4%;
    padding-left: 3%;
    padding-right: 3%;
}

nav ul a{
    color:black;
    font-weight:bold;
    text-transform: uppercase;
    text-decoration: none;
    list-style-type: none;
    font-size:1.25em;
        
}

nav ul a:hover{
    color:#F30400;
}

main{
grid-area: 3/1/6/-1;
}

footer{
    bottom:0;
    padding-top:1%;
    background-color:#1B1B1B;
    grid-area: 6/1/-1/-1;
    text-align: center;
}
#footerText{
    padding-top:4px;
    margin-top: 5px;
    margin-bottom: 5px;
    height:90%;
}
.socialIcons{
    display: inline-block;
}

#insta{
    border-radius:50%;
    width:32px;
    background-color: white;
    float:right;
    margin-right:10px;
}

#fb {
    border-radius:50%; 
    background-color: white;
    float:right;
    margin-right:10px;
    }

#homeHero{
    display:grid;
    height:300px;
    width:auto;
    background-image:url(../images/heroRight.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-area:3/1/4/-1;
    margin-top: 2%;
}
.trifold{
    padding-left:9%;
    display: inline;
    grid-area:5/2/6/3;
    width:40%;
}

.trifold img{
    margin-top:2%;
    margin-bottom:.5%;
    width:20%;
}
main li{
    display:inline;
    margin-left: 16%;
    margin-right: 7%;
    font-size: 1.5em;
    
}

#heroText{
    color:white;
    margin-left:25%;
    margin-right: 45%;
    margin-top:8%;
    font-size:2em;
}
.button {
    font-weight: bold;
    grid-area:3/1/4/-1;
    padding-bottom: 1%;
    width:10%;
    height:7%;
    margin-left: 25%;
    background-color: #1B1B1B;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 15px 32px;
    margin-bottom: 5%;
    margin-top: 2%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    z-index: 2;
    line-height: 5%;
}

.button:hover {
  background-color:white;
  color: #1B1B1B;
font-weight: bold;
}

#stairs{
    padding-right:9%;
}
.skewLineR{
    height: 2px;background: #F30400;transform: skewY(.5deg);
}
.skewLineL{
    height: 2px;background: #F30400;transform: skewY(-.5deg);
}
.redLine{
    height: 2px; background: #F30400; margin-top: 5px; margin-bottom: 5px;
}

.aboutCompany{
    grid-area:4/2/5/3;
    color:black;
    background-color: white;
}

.aboutCompany #aboutText{
    padding-top: 10px;
    padding-bottom: 10px;
    margin:2% 10% 5% 10%;
}


@media only screen and (max-width:992px){
    body{
        grid-template-columns:0 auto 0;
        grid-template-rows: 10% 3% auto auto auto auto;
        width:100%;
    }
    nav ul{
        display:flex;
        flex-direction: row;
        padding:0;
        margin:0;
        justify-content: center;
    }
    nav ul li{
        display:flex;
        justify-content: center;
    }
    
    .button{
        box-sizing: content-box;
        width:10%;
        margin-top: 0;
        margin-bottom: 7%;
    }
    
    .button p{
        box-sizing: border-box;
    }
    
    main{
        grid-area: 3/2/6/3;
    }
    footer{
        grid-area: 6/2/-1/3;
    }
    .trifold{
        display:flex;
        justify-content: center;
        padding:0;
        margin:0;
    }
    .trifold img{
        height:260px;
        width:auto;
    }
    #insta{
        margin:0;  
    }
    
    #fb{
    margin:0;
    }
    
    #stairs{
        padding-right: 0;
    }
    
    heroText{
        margin-right:80%;
        padding:0;
        margin-bottom:0;
    }
    .trifold{
        display:flex;
        width:100%;
        justify-content: center;
        padding:0;
        margin:0;
    }
    .trifold img{
        height:260px;
        width:auto;
    }
    homeHero{
        background-size: auto;
    }

    
}
@media only screen and (max-width:768px){
    
    body{
        grid-template-columns:0 auto 0;
        grid-template-rows: 10% 2% auto auto auto auto;
        width:100%;
    }

    #stairs{
        padding-right: 0;
    }
}
