body{
    margin: 0 auto;
    padding: 0;
    width: 100%;
   
    height:auto;
    background-color: beige;
    font-family:  'Darker Grotesque', sans-serif;
}

nav{display: grid;
    justify-items: center;
    height: 50px;
    width: 100%;
    background:rgb(76, 82, 88);
    position: fixed;
    align-items: center;
}

nav ul{
    position: fixed;
    display: flex;
    align-items: center ;
    width: 85%;
    max-width: 1100px;
    list-style-type: none;
    margin-right: 2rem;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.2rem;
}
nav ul li {
   margin-right: .3rem;
    color: snow;
    transition: .3s;
    font-size: .9rem;
    padding: 2px;
    transition: .2s;
}

nav ul li a:hover{
    padding: 8px;
   background-color: rgb(148, 29, 29);
    box-sizing: border-box;
    transition: .2s;
}

nav ul li a{
    transition: .2s;
    text-decoration: none;
    color: beige;
}

.active{
    padding: 8px;
    
   background-color: rgb(148, 29, 29);
}

.logo{
    flex: 1;
    margin-right: .5rem;
    font-size: 1.5rem;
    font-family: 'Monoton', cursive;
}

.image{

    display: grid;
    align-items: center;
    justify-items: center;
    color: beige;
    height: 40vh;
    width: 100%;
    background-color: aqua;
    background:rgba(0,0,0,0.3) url(/hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
   
}

.image h1{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    
}

span{
    font-family: 'Monoton', cursive;
    font-weight: 100;
}

.info{
    color:rgb(148, 29, 29);
    font-family: 'Darker Grotesque', sans-serif;
}



.container {
    width: 85%;
    max-width: 1100px;
    height:auto;
    background:beige;
    margin: 0 auto;
    text-align: center;
}

.tagline{
    width: 80%;
    max-width: 1100px;
    text-align: center;
    margin: 3rem auto;
    font-size: .8rem;
}

.section{
    height: auto;
    width: 100%;
   
}


.img1{
height: 15rem;
width: 100%;
background-color: purple;
margin-block: 1rem;
background-image: url(hood.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.img2{
    height: 15rem;
    width: 100%;
    background-color: purple;
    margin-block: 1rem;
    background-image: url(logos2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }

.para1{
height: auto;
width: 100%;

margin-block: 1rem;
text-align: left;
}

.headings{
    display: grid;
    align-items: center;
    margin: 0 auto;
   
    width:75%;
    max-width: 1000px;
    height: 2.5rem;
    background-color:rgb(76, 82, 88);
    color: blanchedalmond;
    text-align: center;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Darker Grotesque', sans-serif;
    cursor: pointer;
    transition: .2s;
}

.headings:hover{
    transition: .2s;
    background-color: rgb(148, 29, 29) ;
}


.products{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: .2rem;
    padding-left: .8rem;
    height: auto;
    background-color:beige;
    margin-bottom: 1rem;
    text-align: left;
    transition: .3s;
    overflow-y: auto;
}

.hidden{
    visibility: hidden;
    height: 0;
    margin-bottom: .2rem;
    transition:.5s ;
}

.images{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
}

.cont{
    text-align: left;
}

.call{
    margin-block: 1.5rem;
}

.foot{
    height: 6.5rem;
    width:100%;
    background-color:rgb(36, 40, 44) ;
   margin-top: 1rem;
    text-align: center;
    
    padding-top: 20px;
    color:beige ;
}

@media(min-width: 830px){

    body{
        font-size: 1.5rem;
    }

    .tagline{
        font-size: 1.6rem;
    }
    .image{
        
        height: 100vh;
        width: 100%;
        font-size: 2.5rem;
        display: grid;
        align-items: center;
        justify-items: center;
     }

     .section{
        display: grid;
        grid-template-columns: 1fr 1fr;
        height:auto;
        text-align:left ;
        margin-block: 4rem;
        font-size: 1.2rem;
        
     }
    
     .img1{
        height:20rem ;
     }


     .img2{
        height:20rem ;
     }

     .para1{
        padding-left: 2rem;
        font-size: 1.4rem;
     }

}