/* project wall */
.project-wall-container{
    display: flex;
    justify-content: center;
    width: 100%;
}
.project-wall{
    width: 90%;
}

/* two image container */
.two-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-bottom: 2%;
}
.two-image{
    width: 49%;
}

/* one image container */
.one-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2%;
}
.one-image{
    width: 100%;
    
}

/* three image container */
.three-image-container-outer{
    display: flex;
    justify-content: center;
    
    flex-direction: row;
    
    margin-bottom: 2%;
}
.three-image-container{
    width: 49%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.three-image{
    
    width: 100%;
}

.center{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

/* next project - button */
.next-button-outer{
    display: flex;
    justify-content: center;
}
.next-button{
    display: flex;
    flex-direction: row;
    align-items: center;
    
}
.next-item{
    margin-right: 10px;
    transition: .2s ease-in-out;
    
}
.next-arrow{
    
}
.next-button:hover .next-item{
    margin-right: 30px;
    letter-spacing: .5px;
}

/* next project nav bar */
.p-outer{
    display: flex;
    justify-content: center;
}
.p-nav-container-outer{
    
}
.p-nav-container{
    display: flex;
    
    border-radius: 5px;
    justify-content: space-evenly;
    flex-direction: row;
}
.p-nav-item{
    font-size: 18px;
    font-weight: 300;
    opacity: .5;
    color: white;
    margin: 12px;
    transition: .2s ease-in-out;
}
.p-nav-item:hover{
    opacity: 1;
}
#p-active{
    opacity: 1;
    font-weight: 400;
}
@media only screen and (max-width: 600px){
    .p-nav-container{
        align-items: center;
        flex-direction: column;
    }
}




/* copy section within project */
.section-container{
    display: flex;
    background-color: #101010;
    margin-bottom: 2%;
    
}
.section-1{
    padding: 50px;
}





/* carousel */
.caro-outer{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-color: #101010;
    padding: 50px;
  
}
.caro-inner{
 
   
}
.caro-content{
    margin-top: 30px;
    margin-bottom: 30px;
}
.caro-center{
    display: flex;
    justify-content: center;
    
}
.mySlides {
    display:none;
    width: 100%;
    border-radius: 10px;

}



.slid{
    width: 100%;
}
.caro-copy{
    margin-top: 10px;
}
.caro-button{
     background-color: rgba(100, 100, 100, 0.2);
    
    border-radius: 10px;
    color: white;
    padding: 10px;
    transition: .1s ease-in-out;
}
.caro-button:hover{
   background-color: black;
    cursor: pointer;
}
.caro-section{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    
}

.slid-cop-con{
    opacity: .3;
    margin-top: 10px;
    color: white;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

   
@media only screen and (max-width: 1000px){
    .project-wall{
        width: 100%;
    }
    
    .section{
        width: 100%;
    }
    
    .caro-inner{
        
        width: 100%;
   
}

}
