@charset "UTF-8";

/*========styles.css=======*/

 html {
  scroll-behavior: smooth;
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
    color: #fff;
}
/*===============TYPOGRAPHY=============*/
h1, h2, strong {
    font-weight: 700;
}
/*=========NAVIGATION===============*/
        
a:link,  a:visited {
    text-decoration: none;
    color: #979797;
}
a:hover,  a:active {
    color: black;
}
/*adds underline*/     



.header-wrapper {
    width: 100%;
    top:0;
    background-image: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,0.75), rgba(255,255,255,0) );
  position: -webkit-sticky;
    position: sticky;
    margin: 0 auto;
}
   

header {
    width: 80%;
    margin:0 auto;
     
   /* border-bottom:1px solid black;*/
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows:50px 50px;
    
    
}


/*=============LEFTNAV=========*/


.PB_stamp {
    padding:0;
    display: block;
    grid-column:1/2;
    grid-row:1/3;
    justify-self:start;
     align-self: end;
}

.logo {
    width:75px;
    padding-bottom:0;
}

.works_section{
   grid-column: 2/5;
    grid-row:2/3;
    font-size: 1.3rem;
    padding-left:6px;
    justify-self:start;
    align-self:end;
}

.section_name{
  
     grid-column: 2/5;
    grid-row:1/2;
     font-size: 1.3rem;
    justify-self:start;
    align-self: end;
     padding-left:6px;

}

 .section_name2{
  
     grid-column: 2/5;
    grid-row:2/3;
     font-size: 1.3rem;
    justify-self:start;
    align-self: end;
     padding-left:6px;

}   



/*=============LEFTNAV=========*/

.centre_label{
   font-size: 1.3rem;
    grid-column:4/8;
    grid-row:2/3;
    justify-self:center;
    align-self:end;
    color:black;
   /* background:yellow;*/
    text-align: center;
}


a.title-section:link {
    color: #999;
}
a.title-section:hover {
    color: #000;
}


.noLink{
    color:#000000;
}


/*====removes blue outline on clicked button====*/
        
button:focus {
    outline: none;
}




.open-nav,  .close-nav {
    display: none;
}
.nav {
    /* border:4px solid red;*/
    grid-column:6/11;
    grid-row: 2/3;
    justify-self:end;
    align-self:end;
   /* background:orange;*/
}
.nav-list {
    /*  border: 4px solid orange;*/
    display: flex;
    text-decoration: none;
    justify-content: flex-end;
    padding-right: 20px;
}
.works {
    display: none;
}
li {
    list-style: none;
    margin-left: 1.2em;
    font-size: 1rem;
}

/*---------=====BOTTOM NAV=======-----*/

footer {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.arrow_Holder {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    padding-bottom:100px;
}
.backArrow {
    font-size: 3rem;
    text-align: center;
}








/*==========MEDIA QUERIES==========   
        
*/


@media (max-width:1000px) {
header {
    width: 95%;
}
 .hidden {
    display: none;
}
    
.works {
    display: block;
}
    
.nav-list {
    flex-direction: column;
    margin-top: 18px;
    justify-content: space-between;
    padding-right: 20px;
  
}
    
    
    .works_section,
    .section_name_center{
   font-size: 1.1rem;
      grid-column:5/7;
    grid-row:2/3;
    justify-self:center;
    align-self:end;
    padding-bottom:7px;
        color:black;
   /* background:green;*/
         text-align: center;
}
    centre_label{
        visibility: hidden;
    }
    
  
    
nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    z-index: 1000;
    background:white;
   
    -ms-transform: translateX(0);
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-o-transform: translateX(0);
     transform: translateX(0);
}
    
.navigation-open {
    
    -ms-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-o-transform: translateX(-100%);
    transform: translateX(-100%);
}
    

li {
    margin-top: 100px;
    border-bottom: 1px solid grey;
}
    
    
.open-nav {
    display: block;
    border: 0;
    background: 0;
    grid-column: 10/11;
    grid-row: 2/3;
    padding: 0 2rem 0 0;
    margin: 0;
    font-size: 2rem;
    color: #999;
    justify-self: end;
    align-self:end;
    cursor: pointer;
}
.close-nav {
    display: block;
    border: 0;
    background: 0;
    position: absolute;
    right: 1em;
    padding: 0;
    margin: 0;
    background: 0;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
}
.main-name {
    color: grey;
    display: none;
}
.title {
    grid-column: 2/3;
    justify-self: center;
    align-self: end;
}
    
    .logo {
    width:60px;
}
    
   /*----=====BOTTOM NAV======-----*/ 
    
    .arrow_Holder {
    width: 100%;
  
}
    
}
        /*===========SMALL PHONES==================*/


@media only screen and (max-device-width :667px)
{
    header {
    width: 100%;
}
    
    footer{
        width:100%;
    }
    .arrow_Holder {
    width: 100%;
       
  
}
    
}

