*, *::before, *::after{
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body{
    background:#f7f7f7;
}

.nav{
    display:flex;
    flex-direction:row;
    justify-content:center;
    background:#af842f;
    margin:0;
    padding: 0;
    width:100%;
    position:sticky;
    top:0;
}    

.link{
    display:inline-block;
    text-decoration:none;
    color:rgb(250, 249, 249);
    padding:10px;
}

.link:hover{
    background:#000;
    color:#fff;
}

.nav a{
    font-family:"Roboto", sans-serif;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
}


.banner{
    display:flex;
    flex-direction:row;
    justify-content:center;
    background:#fff;
    margin:0;
    padding:10px 0;
}

.hero{
    display:flex;
    width:100%;
    height:500px;
    flex-direction:row;
    justify-content:center;
    background:URL("img/herobg.png")no-repeat center;
    background-size:cover;
    align-items:center;
    margin-bottom:30px;
    
}

.container{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:800px;
    margin:auto;
    padding:30px 0;
}

#targetDiv{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:100%;
}

#targetDiv2{
    width:100%;
    height:auto;
    overflow:hidden;
    margin-bottom:40px;
    background:#e6e6e6;
    margin:60px 0px;
}

/*------------Collections Style-----------*/
.collections{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    grid-gap:10px;
    justify-content:center;
    align-items:center;
    margin:40px 0;
    background:#030303;
    padding:80px 40px;
    width:100%;
}

.collections div{
    background:#fff;
    min-height:500px;
    padding:10px;
}

















buttonpanel{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px 0;
    margin-bottom:40px;
    background:#af842f;
}

button.gallery{
    border:0;
    background:red;
    color:#fff;
    
    text-align:center;
    font-size:20px;
    text-transform:uppercase;
    font-family:"Roboto", sans-serif;
}

button.gallery:hover{
    background:#000;
}

button.gallery a{
    text-decoration:none;
    display:block;
    padding:20px;
    cursor:pointer;
}


.pagepanel{
    display:flex;
    flex-direction:row;
    background:URL("img/panelbg.png")no-repeat center;
    background-size:cover;
    overflow:hidden;
    justify-content:center;
    align-items:center;
    margin:40px 0;
}

.pagepanel div{
    display:flex;
    justify-content:center;
    align-items:center;
    width:800px;
    margin:auto;
    height:250px;
}

button.panel{
    background:red;
    color:#fff;
    border:none;
    padding:15px 20px;
    margin:0;
    font-size:20px;
    text-transform:uppercase;
    font-family:"Roboto", sans-serif;
}

button.panel:hover{
    background:#000;
    cursor:pointer;
}

button.panel a{
    text-decoration:none;
    cursor:pointer;
}




.footer{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:auto;
    padding:40px 0;
    background:#af842f;
    margin:0;
    padding:10px 0;
    font-family:"Roboto", Sans-serif;
    font-size:14px;
    color:inherit;
    text-transform:uppercase;
}



img{
    width:100%;
    height:auto;
}


a{
    text-decoration:none;
    color:inherit;
}

.footer a{
    font-family:"Roboto", Sans-serif;
    font-size:14px;
    color:inherit;
    text-transform:uppercase;
    cursor:pointer;
}

.footer a:hover{
    color:blue;
}

span{
    font-size:120px;
    color:red;
    line-height:.96;
    padding:0;
    margin-right:10px;
    float:left;
}

p{
    font-family:"merryweather", serif;
    font-size:18px;
    line-height:1.5;
    color:#333;
    margin-bottom:30px;
}

p.intro{
    font-size:24px;
    text-align:center;
    font-style:italic;

}


p.foot{
    font-family:"Roboto", Sans-serif;
    font-size:14px;
    color:inherit;
    text-transform:uppercase;
    text-align:center;
}

p.caption{
    font-family:"merryweather", serif;
    font-size:16px;
    line-height:1;
    color:#000;
    margin-bottom:30px;
}


h1,h2,h3,h4,h5,h6{
    font-family:"Roboto", sans-serif;
    color:#000;
    margin-bottom:10px;
    text-align:left;
}

h1{
    font-size:60px;
}

h2{
    font-size:40px;
}

h3{
    font-size:30px;
}

h4{
    font-size:20px;
    text-transform:uppercase;
}



@media only screen and (max-width:600px) {
  body {
      background:#fff;
  }

  .nav{
    height:auto;
    width:100%;
  }

  .nav{
    flex-direction:column;
    align-items:center;
    width:100%;
    text-align:center;
  }

  .hero{
    flex-direction:column;
    justify-content:center;
    align-items:center;

    img{
        width:100%;
        height:auto;
    }
  }

  container{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    width:100%;
    height:auto;
  }

  p.intro{
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  
  
    #targetDiv{
      width:100%;
      text-align:left;
      margin:auto;
      text-align:left;
      padding:20px;
    }
 
    .panel{
      display:flex;
      flex-flow:coulmns;
      flex-wrap:wrap;
      width:100%;
      height:auto;
    }

  footer{
    flex-direction:column;
    text-align:center;
  }
}