@charset "UTF-8";
/* CSS Document */

.grid-container{
            width:80%;
			margin: 200px auto 0 auto;
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
			grid-auto-rows: 250px;
			grid-auto-flow: dense;
            grid-gap:5px;
            z-index: 1;
        }
        .picture-container{
            cursor: pointer;
            overflow: hidden;
        }
        .picture-container, .picture-container img{
            width:100%;
            height:100%;
            object-fit: cover;
        }
        .picture-container img{
            width:100%;
            transition: 1s;
            object-fit: cover;
            height: 100%;
        }
        .picture-container img:hover{
            transform: scale(1.05);
            z-index: 1;
        }
        
        
        
        
        .modal {
		  display: none;
		  position: fixed;
		  z-index: 6000;
		  left: 0;
		  top: 0;
		  width: 100%;
		  height: 100vh;
		  overflow: scroll;
		  background-color: rgba(0,0,0,.9);
            justify-content: center;
            align-items: center;
            
		}
        .modal-content {
		  padding: 0;
            margin: 0;
            text-align: center;
        }
        .about{
            color: #fff;
            background-color: rgba(0,0,0,0.90);
            text-align: center;
            margin: 0;
            padding: 10px;
            font-size: 20px;
            font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
        }
        
        .close {
		  color: white;
		  position: fixed;
		  top: 50px;
		  right: 50px;
		  font-size: 35px;
		  font-weight: bold;
            cursor: pointer;
		}
.buttonContainer{
    margin: 0 auto;
    text-align: center;
    width: 100%;
    position: fixed;
    top:150px;
    padding: 0;
    z-index: 3000;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    box-shadow: 0 4px 2px -2px gray;
    left: 0;
    background-color: #fff;
}
.buttonContainer button{
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 20px;
    outline: none;
    z-index: 2000;
    width:25%;
    height:40px;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    border-bottom: 2px solid rgba(255,255,255,1.00);
    background-color:#fff;

}
.buttonContainer button:hover{
    border-bottom: 2px solid rgba(204,21,0,1.00);
}

/* PORTFOLIO BUTTON */
.portButtonContainers{
	width:100%;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}


.portButtonContainer{
	margin: 50px;
	border: 3px solid #CC1500;
	display: grid;
	grid-template-column: 100%;
	overflow: hidden;
    background-color:#fff;
	
	
	
}
.buttonH1{
	color:#CC1500;
	grid-row: 1;
	grid-column: 1;
	z-index: 1000;
	padding: 5px 30px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-weight: 400;
}
.buttonSlide{
	height: 100%;
	width:100%;
	background-color: #cc1500;
	grid-row: 1;
	grid-column: 1;
	transform: translateX(-100%);
	transition: .2s ease-in-out;
}
.buttonName{
	transition: .5s;
}

.portButtonContainers:hover .buttonSlide{
	transform: translateX(0);
}
.portButtonContainers:hover .buttonH1{
	color:#fff;
}



a{text-decoration: none;}
    
    


@media only screen and (max-width: 800px){
            .buttonContainer{
                flex-direction: column;
            }
            .buttonContainer button{
                width:100%;
                background-color: #fff;
            }
            .grid-container{
                margin-top:320px;
            }
        } 