/* grid */

#grid {
    display: grid;
    grid-template-rows:  auto fit-content(100%);
    grid-template-columns: repeat(6, 1fr) ;
}

/* body */

body{
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    background-color: #d9d9d9;
    padding: 0;
    margin: 0;
    z-index: 2;
}

body main {
    padding-left: 1rem;
    padding-right: 1rem;
    display:block;
    grid-row: 2/5;
    grid-column: 2/6;
    text-align: center;
    padding-top: 30px;
}

    /* nav bar */

header {
    background: #595959;
    grid-row: 1/2;
    grid-column: 1/7;
    height: 80px;
    width: 100%;
    opacity: 0.7;
    position: fixed;
    top: 0;
    z-index: 1;
}

.flex {
    display: flex;
}


.flex > li {flex: 1;}

nav{ 
    background-color: #595959;
    grid-row: 1/2;
    grid-column: 1/7;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    padding-top: 30px;
    text-align: center;
}

ul {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    
}  
    
nav ul li  {
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    text-decoration:underline ;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    list-style: none;
    position: relative;
}

nav ul li a {
    padding: 0;
    margin: 0;
    color: #ffffff;
}

nav ul li ul  {
    display: none;
    position: absolute;
    background-color: #595959;
    padding: 2% 0%;
    text-align: center;
    top: 100%;
    left: 0%;
    flex-direction: column;
    
    
}


nav ul ul li a {text-decoration: none ;}

nav ul ul li {font-size: 1.2rem;
    padding: 2%;
    margin: 2%;
    
    
    
   }

nav ul li:hover {
    background-color: #262626;
    border-radius: 5%;
    transition: background-color 0.5s;

}

nav ul ul li:hover {
    background-color: #262626;
    border-radius: 5%;
    transition: background-color 0.5s;
}


nav ul li:hover ul {
    display: flex;
    
    
    
}




/* dropdown menu */



/* banner image */



#banner {
    background-image: url("banner2.jpg");
    grid-row: 1/2;
    grid-column: 1/7;
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: contain;
    background-attachment: fixed;  
}

#banner2 {
    background-image: url("banner4.jpg");
    grid-row: 1/2;
    grid-column: 1/7;
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: contain;
    background-attachment: fixed;  
}

#banner3 {
    background-image: url("banner3.jpg");
    grid-row: 1/2;
    grid-column: 1/7;
    background-size: cover;
    height: 60vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    background-attachment: fixed;  
    top:-20%;
}

#banner6 {
    background-image: url("banner6.jpg");
    grid-row: 1/2;
    grid-column: 1/7;
    background-size: contain;
    height: 60vh;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    object-fit: cover;
    background-attachment: fixed;  
    
    
}

#logo {
    grid-row: 1/2;
    grid-column: 3/5;
    width: 100%;
    height: 100%;
    position: relative;
}

#logo img {
    height: auto;
    width: 100%;
    min-width: 250px;
    text-align: center;
    position: absolute;
    margin: 0;
    padding: 0 ;
    top: 25%;
    background-attachment: fixed;  
}



 
/* artists */




main h2 {
    text-align: center; 
    color: #262626;
    text-decoration: underline;
    font-size: 2rem;
    margin-bottom: 7%;
    padding: 0;
    background-position: top;
    font-family: 'montserrat' Arial, Helvetica, sans-serif;

}

img { 
    grid-row: 2/4;
    grid-column: 2/6;   
    width: 30%;
    min-width: 250px;
    background-position: center;
    flex-grow: 2;
    align-items: flex-start;
}

#fc a {
    display: inline-flex;
    width: 30%;
    min-width: 250px;
    margin: 2% 3%;
    align-items: flex-start;
}

    
#fc img:hover {
    opacity: 0.6;
    filter: grayscale(20%);
    transition: all 0.5s;
}





/* text */




main p { 
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    color: #262626;
    text-align: center;
    font-size: 1rem;
    margin-top: 5%;
    margin-bottom: 0;
    padding: 10px 10px;
    border: #262626 1px solid;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
}

main p a {
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    color: #262626;
    font-size: 1rem;
    text-decoration: underline;
    font-weight: 500;
}
   
                     
/* video */

.video {
    grid-row: 4/5;
    grid-column: 2/6;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    margin-top: 7%;
    margin-bottom: 7% ;
    background-position: center;
   
}

.iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    
}




/* Matt */





.matt {
    display: flex;
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 2/6;
    height: 500px;
    width: 25%;
    margin-bottom: 2%;
    margin-right: 0;
    margin-top: 4%;
    padding: 0;
    position: relative;
    padding: 0%;
    left: 0;
    overflow: hidden;
    float:left;
}

.matt img:nth-child(1) {
    width: 100%;
    /*height: 170px;*/
    padding: 0%;
    margin: 0%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    border-radius: 0px;

}

.matt a {
    background-image: url("instaicon.png");
    object-fit: contain;
    background-size: cover;
    padding: 0%;
    margin: 0% 0%;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 27%;
    left: 0;
 }

 .matt a:hover {
     opacity: 0.7;
     filter: grayscale(25%);
     height: 33px;
     width: 33px;
     transition: all 0.5s;
 }

.mattpage h3 {
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    color: #262626;
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
    margin-bottom:  2%;
    margin-top: 5%;
    text-decoration: underline 2px;


}

.matt p { 
   
    height: auto;
    position: absolute;
    left: 0%;
    top: 32%;text-align: left;
    

}


/* chase */

.chase {
    display: flex;
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 2/6;
    height: 500px;
    width: 25%;
    margin-bottom: 2%;
    margin-right: 0;
    margin-top: 4%;
    padding: 0;
    position: relative;
    padding: 0%;
    left: 0;
    overflow: hidden;
    float:left;
}

.chase img:nth-child(1) {
    width: 100%;
    /*height: 200px;*/
    padding: 0%;
    margin: 0%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    border-radius: 0px;

}

.chase a {
    background-image: url("instaicon.png");
    object-fit: contain;
    background-size: cover;
    padding: 0%;
    margin: 0% 0%;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 35%;
    left: 0;
 }

 .chase a:hover {
     opacity: 0.7;
     filter: grayscale(25%);
     height: 33px;
     width: 33px;
     transition: all 0.5s;
 }


.chase p { 
   
    height: auto;
    position: absolute;
    left: 0%;
    top: 40%;text-align: left;
    

}

/* Josh */

.josh {
    display: flex;
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 2/6;
    height: 500px;
    width: 25%;
    margin-bottom: 2%;
    margin-right: 0;
    margin-top: 4%;
    padding: 0;
    position: relative;
    padding: 0%;
    left: 0;
    overflow: hidden;
    float:left;
}

.josh img:nth-child(1) {
    width: 100%;
    /*height: auto;*/
    padding: 0%;
    margin: 0%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    border-radius: 0px;

}

.josh a {
    background-image: url("instaicon.png");
    object-fit: contain;
    background-size: cover;
    padding: 0%;
    margin: 0% 0%;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 35%;
    left: 0;
 }

 .josh a:hover {
     opacity: 0.7;
     filter: grayscale(25%);
     height: 33px;
     width: 33px;
     transition: all 0.5s;
 }


.josh p { 
   
    height: auto;
    position: absolute;
    left: 0%;
    top: 40%;
    text-align: left;
    

}



/* Jonny */

.jonny {
    display: flex;
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 2/6;
    height: 500px;
    width: 25%;
    margin-bottom: 2%;
    margin-right: 0;
    margin-top: 4%;
    padding: 0;
    position: relative;
    padding: 0%;
    left: 0;
    overflow: hidden;
    float:left;
}

.jonny img:nth-child(1) {
    width: 100%;
    height: auto;
    padding: 0%;
    margin: 0%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    border-radius: 0px;

}

.jonny a {
    background-image: url("instaicon.png");
    object-fit: contain;
    background-size: cover;
    padding: 0%;
    margin: 0% 0%;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 40%;
    left: 0;
 }

 .jonny a:hover {
     opacity: 0.7;
     filter: grayscale(25%);
     height: 33px;
     width: 33px;
     transition: all 0.5s;
 }

.jonnypage h3 {
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    color: #262626;
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
    margin-bottom:  2%;
    margin-top: 5%;
    text-decoration: underline 2px;

}

.jonny p { 
   
    height: auto;
    position: absolute;
    left: 0%;
    top: 45%;
    text-align: left;
    

}


/*  Gallery */

.gallery{
    float: right;
    width: 75%;
    grid-row: 2/5;
    grid-column: 3/6;
    vertical-align: top;
   
}

.gallery ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    margin: 2vmin; 
    vertical-align: top;
    text-align: center;
    
}

.gallery li {
    height: 20%;
    flex-shrink: 2;
    margin: 2vmin;
    width: 25%;
    text-align: center;
    min-width: 145px;
    min-height: 145px;
    
    }

.gallery ul li img {
    object-fit: cover;
    width: 100%;
    min-width: 145px;
    min-height: 145px;
    flex-grow: 1;
    overflow: hidden;
}


.clear {clear: none;}




/* aftercare */

.aftercare1 {margin: 5% 0%;}

.aftercare1 ul {
    display: flex;
    flex-flow: column nowrap;
    list-style: inside;
    text-align: left;
    margin-bottom: 5%;
  
    
}

.aftercare2 ul li {padding: 0%;}

.aftercare2 ul li {padding: 1%;}

main .aftercare2 p {
    border: none;
    padding-bottom: 2%;
    margin-bottom: 2%;
    margin-top: 0%;
    text-align: left;
    border-bottom: 1px #262626 solid;
    border-radius: 0%;

}

.aftercare1 h3 {
    text-decoration: underline;
    font-weight: 700;
}



.aftercare2 ul {
    display: flex;
    flex-flow: column nowrap;
    list-style: inside;
    text-align: left;  
    margin-bottom: 3%;
    
}



.aftercare2 h3 {
    text-decoration: underline;
    font-weight: 700;
}




/* faq */

.faq  {
    /*border: 1px solid #262626 ;*/
    margin-bottom: 2%;
    
}

.faq h3{ 
    margin: 1%;
    padding: 0;
    text-decoration: underline;

}

.faq p {
    margin: 1%;
    padding: 0%;
    text-align: left;
    border: none;
}


/* Contact */

#contactfc {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;

}

.contactartist { 
    box-sizing: border-box;
    grid-row: 2/6;
    grid-column: 2/6;
    width: 20%;
    min-width: 150px;
    flex-grow: 2;
    margin: 2%;
}

.contactartist img:nth-child(1) { 
    float: left;
    width: 90%;  
    min-width: 150px;
    
}

.contactartist a:nth-child(2){
    background-image: url("instaicon.png");
    object-fit: contain;
    background-size: 100%;
    background-repeat: no-repeat;
    float: left;
    clear: left;
    
    height: 30px;
    width: 30px;
}

.contactartist a:nth-child(3){
    background-image: url("gmailicon.png");
    object-fit: contain;
    background-size: 100%;
    background-repeat: no-repeat;
    float: left;
    height: 30px;
    width: 30px;
}


.clearl {
    clear: both;
}




    
#contactfc img:hover {
    opacity: 1;   
}

.contactartist a:hover {
    opacity: 0.7;
    filter: grayscale(30%);
    transition: all 0.5s;

}

#contacttxt { 
    grid-row: 6/7;
}

#contacttxt p {
    margin-top: 2%;
    margin-bottom: 5%;
    border: none;
    border-top: solid 1px;
    border-radius: 0%;
}



/* footer/nav */

.contact { 
    grid-column: 1/7;
    grid-row: 5/6;
    background-color: #262622;
    width: 100%;
    height: 100%; 
    margin-top: 0;
    padding: 0;
    min-height: 350px;
   
}

#text {
    grid-column: 4/6; 
    grid-row: 5/6;
    margin-right: 17%;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: 1%;
    float: right;   
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
    font-size: .8rem;
    color: #ffffff;
}

#text a {
    
    color: #ffffff;
    font-family: 'montserrat' Arial, Helvetica, sans-serif;
   }


#map { 
    grid-column: 2/4;
    grid-row: 5/6;
    margin-left: 17%;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-right: 1%;
    float: left;
    min-height: 300px;
    
    
}

#screen { 
    width: 40vw;
    height: 40vh;
    min-height: 300px;
}




@media only screen and (max-width: 992px) {
    
     #grid {
        display: grid;
        grid-template-columns: 1fr repeat(4, 192px) 1fr;
        grid-template-rows: auto fit-content(100%);
        }

    #text {
        float: none;
        text-align: center;
        margin: 0%;
        padding: 0%;
    }

    #map {
        float: none;
        text-align: center;
        margin: 0%;
        padding: 0%;
   }    

    #map iframe {width: 60%;
    height: auto;}


    img {min-width: 150px;
    }

    #fc a {min-width: 150px;
    }
   
    #banner6 {
        height: 40vh;
    }



}





@media only screen and (max-width: 768px) {
    
     #grid {
        display: grid;
        grid-template-columns: 0fr repeat(4, 1fr) 0fr;
        grid-template-rows: auto fit-content(100%); 
        }

        ul {
            flex-flow: column nowrap;
        }  

        header {height: 200px;
        opacity: 1;
    position: static;}

        nav ul li ul {z-index: 1;
            width:50%;
            text-align: center;}

        nav { position: static;}

      
        img {min-width: 100px;
       }

        #fc a {min-width: 100px;
        }

        #banner {display: none;
        }

        #banner2 {display: none;
        }

        #banner3 {display: none;
        }

        #banner6 {display: none;
        }

        nav ul li {font-size: 1.5rem;}

        
        #map {
            margin-left: 2%;
            margin-right: 2%;
        }

        #text {
            margin-left: 2%;
            margin-right: 2%;
        }

        #logo {
            grid-row: 1/2;
            grid-column: 2/3;
            

        }

        
        #logo img {
            display: none;
        }      

        #map  { 
            min-height: 250px;
            width: 100%;
            margin: 0;
            padding: 0;
        }

       #map iframe {
            min-height: 250px;
            width: 100%;
            margin: 0;
            padding-bottom: 0;
            box-sizing: border-box;
        }

        nav ul li ul  {
            left: 25%;
        }

        #contactfc {
           flex-flow: row wrap;
           
        }

        .contactartist {
            width: 40%;
            min-width: 100px;
            
           
        }

   
        
      

        .gallery {
            float: none;
            grid-row: 3/5 ;
            grid-column: 2/6;
            width: 100%;
            min-height: 1100px;
        }

        .gallery ul {min-height: 1100px;}

        .gallery li {
            min-width: 120px;
            min-height: 120px;
            max-width: 180px;
            max-height: 180px;
        }

        .gallery ul li img {
            min-width: 120px;
            min-height: 120px;
            max-width: 180px;
            max-height: 180px;
            flex-grow: 1;
            display: flex;    
        }

        /* matt */

        .matt {
            float: none;
            grid-column: 2/6 ;
            grid-row: 2/2;
            width: 100%;
            height: auto;
            min-height: 230px;
        
        }

        .matt img:nth-child(1) {
            width: 38%;
            height: auto;
            left: 0;
            height: 135px;
            object-fit: cover;    
        }
        
        .matt a {
            left: 0;
            top: 60%;   
         }

         .matt a:hover {
             opacity: 1;
             filter: none;
             height: 30px;
             width: 30px;
             transition: none;
         }
        
        .mattpage h3 {   
            text-align: center;
            border-bottom: 1px;
        }
        
        .matt p {           
            height: auto;
            position: absolute;
            left: 45%;
            width: 50%;
            top: 0;
            margin-top: 0;
        }

        /* chase */

        .chase {
            float: none;
            grid-column: 2/6 ;
            grid-row: 2/2;
            width: 100%;
            height: auto;
            min-height: 230px;
        }

        .chase img:nth-child(1) {
            width: 38%;
            height: auto;
            left: 0;
            height: 135px;
            object-fit: cover;    
        }
        
        .chase a {
            left: 0;
            top: 60%;   
         }

         .chase a:hover {
             opacity: 1;
             filter: none;
             height: 30px;
             width: 30px;
             transition: none;
         }
        
        
        
        .chase p {           
            height: auto;
            position: absolute;
            left: 45%;
            width: 50%;
            top: 0;
            margin-top: 0;
        }

        /* josh */

        .josh {
            float: none;
            grid-column: 2/6 ;
            grid-row: 2/2;
            width: 100%;
            height: auto;
            min-height: 230px;
        }

        .josh img:nth-child(1) {
            width: 38%;
            height: auto;
            left: 0;
            height: 135px;
            object-fit: cover;    
        }
        
        .josh a {
            left: 0;
            top: 60%;   
         }

         .josh a:hover {
             opacity: 1;
             filter: none;
             height: 30px;
             width: 30px;
             transition: none;
         }
        
        
        
        .josh p {           
            height: auto;
            position: absolute;
            left: 45%;
            width: 50%;
            top: 0;
            margin-top: 0;
        }

        /* jonny */

        .jonny {
            float: none;
            grid-column: 2/6 ;
            grid-row: 2/2;
            width: 100%;
            height: auto;
            min-height: 230px;
        }

        .jonny img:nth-child(1) {
            width: 38%;
            height: auto;
            left: 0;
            height: 135px;
            object-fit: cover;    
        }
        
        .jonny a {
            left: 0;
            top: 60%;   
         }

         .jonny a:hover {
             opacity: 1;
             filter: none;
             height: 30px;
             width: 30px;
             transition: none;
         }
        
        .jonnypage h3 {   
            text-align: center;
            border-bottom: 1px;
        }
        
        .jonny p {           
            height: auto;
            position: absolute;
            left: 45%;
            width: 50%;
            top: 0;
            margin-top: 0;
        }

        

       
        

}

@media(hover: hover) and (pointer: fine) {
    
    nav ul li:hover ul {
        display: flex;    
    }
    
}

