/*global*/
body{
    width: 100%;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}

header{
    display: flex;
    flex-direction: row ;
    flex-wrap: nowrap;
    align-items: center;
    flex-flow: start;
    background-color:#86A2A4 ;
}

.left-nav nav{
    width: 35%;
    display: flex;
    flex-direction: row ;
    flex-wrap: nowrap;
    align-items: center;
    flex-flow: start;
    position: absolute;
    left: 0;
}

.left-nav  a{
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    text-align: center;
    flex:auto ;
    gap: 5px;
}
nav a{
 color: white;
 text-decoration:none ;
 gap: 5px;
}

.logo-box{
    width: 15%;
    display:block;
    margin:auto;
    
}

.logo-box img{
    width: 100%;
    clear: both;
}

.right-nav{
    max-width: 35%;
    display: flex;
    flex-direction: row ;
    flex-wrap: nowrap;
    align-items: center;
    flex-flow: start;
    position: absolute;
    right: 0;

}

.head-icon{
    width: 50%;
    height: 50%;
}
.head-icon img{
    width: 100%;
    height: 50%;
}
/*
footer{
position: relative;
bottom: 0;
left: 0;

display: flex;
justify-content: space-between;
}
*/

#footer-navigation{
    width: 40%;
    position: relative;
    float: left;
    background-color: #86A2A4;
    color: white;
}
#footer-socials{
    width: 40%;
    position: relative;
    float: right;
    background-color: #86A2A4;
    color: white;
}
#footer-socials img{
    width: 75px;
}
.socials img{
    width: 75px;
}

#footer-nav{
    color: white;
    
}
/*abou us */
#about-us-footer{
display: flex;
justify-content: space-between;
text-align: center;
border-top: solid white;
}
#footer-about{
    margin-right: 150px;
}


/* Home page*/
#home-main{
    background-image: url(first-page1.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh; 
    width: 80%;
    margin: auto;
    margin-top: 15px;
}
footer{
    margin-top: 15px;
    background-color: #86A2A4;
}


/* sencondpage*/
#secondpage-gallary{
    width: 100%;
    margin: auto;
    background-size: auto;
    background-color: aliceblue;

 /*   height:150vh; */
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    grid-template-areas: 
    "p1   p2   p3";
}
#p1{
    grid-area: p1;
}
#p2{
    grid-area: p2;
}
#p3{
    grid-area: p3;
}


#h1{
  text-align: center;
  padding: auto;
}
.prodct-images{
    width: 85%;
    margin: auto;
}
.prodct-images img{
    width: 100%;
    height: 100%;
}

#thirdpage{
    width: 80%;
    margin: auto;
    margin-top: 15px;

    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    grid-template-areas: 
    "about-img about-img about-img about-img"
    ". about-text about-text ."
}

#about-img{ /*this is the image box*/
    grid-area: about-img;

    width: 80%;
    margin: auto;
}

#about-img img{ /*this is the image*/
    width: 100%;
}
#about-text{
    grid-area: about-text;
    text-align: center;
    font-size: 1.5em;
}

#about-us-footer img{
    width: 75px;
    height: 75px;
}

#main-footer{
    color: #86A2A4;
}

