

/*************** BASE STYLES ***************/


body{
    color: #39383C;
    font-family: 'Spartan', sans-serif;
    background-color:#f0f2f2
}

/*************** GRID ***************/


.full-width{
    margin: 0 auto;
    overflow: auto;
    max-width: 1200px;
    padding: 40px auto;

}

#work .full-width{

	
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: center;
	
}

.half-width{
    
    float:left;
    width:47%;
    padding:40px 0px 40px 40px;
}

.third-width{
   display: inline-block;
    margin-top:30px;
	margin-left: 15px;
	margin-right: 15px;
    width:345px;
    height:345px;
	position: relative;
    float: left;
    overflow: hidden;
	vertical-align: top;
	
}



.portfolio_images{
	width: 345px;
    position: relative;
	vertical-align: middle;
}

#logo_main{
	padding-right:40px;
	align-content: center;
}


#top_main_logo{
	max-width:376px;
}

#bio_content_full{
	float:left;
    padding-left:50px;
}

#bio_picture{
	padding-top:35px;
	padding-left:35px;
	height: 422px;
	
	
}



img {
    
   
}

label,btn{
    font-size: 1.7em;
}

h2, label.btn {
    font-weight: 500;
    line-height: 40px;
}
#bio_content {
width:55%;
    font-weight: 500;
    line-height: 40px;
}



/**
h2 .highlight-text { 
    color:#115273;
    font-weight:900;
}

a {
   color:#39383C; 
   text-decoration: none;
}
a:hover {
    color:#115273;
    text-shadow: 0px 0px 1px #115273;
}

#author {
    font-weight:100;
    font-size:19px;
    vertical-align: -20px;
    font-style: italic;
}


/*************** HEADER ***************/

#header {
    background-color:#FFFFFF;
    padding: 10px 0px 10px 0px;
}

#nav {
	
    text-align: right;
    padding: 40px 0px 0px 0px;
	width: 40%;
	
}

#nav ul li{
    text-align: end;
    display: inline-block;
    padding-right: 50px;
    text-transform:uppercase;
    list-style-type: none;
}

/*************** QUOTE ***************/
#quote{
    text-align: center;
    padding:20px 30px 0 30px;
	
}

/*************** WORK ***************/
#work {
    text-align: center;
}


/*************** FOOTER ***************/
#footer {
    padding:40px 0px;
    text-align:center;
}




.hover-event:hover div{
	 
	
}


.bottom_image_holder{
	transition-duration: .2s;
	width: 345px;
    height: 345px;            
    top: 0;
    left: 0;
	position: absolute;
	/*z-index: 3;*/
	      
}
.hover-event:hover .bottom_image_holder img{
	  opacity: .1;

	filter: grayscale(100%); 
    transition-duration: .2s;
	z-index: 3;
}


.overlay{
	transition-duration: .1s;
    opacity: 0;
    z-index: 9;
    margin: 0px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 200px;
	color: black;
	width: 100%;
	height: 100%;
		
}
.overlay:hover{
/*	transition-delay: 1.5;*/
	transition-duration: 1.0s;
	opacity: .9;
	z-index: 9;
    margin: 0px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top:100px;	
	




}


/*//////////////////////////////////////////////// POP_UP CODE /////////////////////////////////////////////////////////////////////////////////////////*/




.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0,0,0, .7);
  transition: opacity .25s ease;
  z-index: 50;
}


/* POP-UP GRAY/BLACK AREA */
.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.modal-state {
  display: none;
}


/* POP-UP OPACITY */
.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 0;
}


/* POP-UP BOX STYLING */
.modal__inner {
  transition: top .25s ease;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
  max-width: 750px;
}


/* POP-UP image properties */
.second_image{
    max-width:100%;
	max-height:450px;
	min-width: 150px;
	margin-left:auto;
	margin-right: auto;
	display:block;

	
}




/* EXIT BUTTON POSITIONING */
.modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
  opacity: 0;
}


/* EXIT BUTTON SET-UP */
.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #ccc;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}


/* Exit Button Color */
.modal__close:hover:after,
.modal__close:hover:before {
  background: rgba(78,75,75,1.00);
}


/* X or Exit Button in top Right Corner*/
.modal__close:before {
  transform: rotate(-45deg);
}


/* <-----IS THIS NEEDED?
@media screen and (max-width: 768px) {
	
    
    
  .modal__inner {
      
      
    width: 90%;
    height: 10%;
    box-sizing: border-box;
     
  }
     
}
*/

/* Other
 * =============================== */

/*
body {
    
  padding: 1%;
  font: 1/1.5em sans-serif;
  text-align: center;
  
}
  */


/*Defining the button display */
.btn {
  cursor: pointer;
    /*
  background: #000000;
  display: inline-block;
  padding: .5em 1em;
  color: #fff;
  border-radius: 3px;
    */
}



/*
.btn:hover,
.btn:focus {
  background: #2ecc71;
}

.btn:active {
  background: #27ae60;
  box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
}

.btn--blue {
  background: #2980b9;
}

.btn--blue:hover,
.btn--blue:focus {
  background: #3498db;
}

.btn--blue:active {
  background: #2980b9;
}
*/

p img {
  max-width: 200px;
  height: auto;

  
}



/*//////////////////////////////////////////// END POP_UP CODE /////////////////////////////////////////////////////////////////////////////////////////*/










@media (max-width: 1024px){

	
	#top_main_logo{
	  max-width:300px;
}
	h2, label.btn{
		font-size:16pt;
	}
	
	

}

@media (max-width: 782px){
	
	#bio_content {
		width:80%;
		padding-left:40px;
	}
	
	#bio_content_full{
	  float:left;
      width:80%;
      padding:0px 0px 40px 40px;
}
	.half-width{
		
		margin: auto;
		align-items: center;
	}
	
	
	#nav {
    text-align: center;
    margin: 0 auto;
 
}
	#logo_main{
		  float:inherit;
		
		align-content: center;
		
	}
	
	
	#nav{
		padding:0px;
		float:inherit;
	    margin:auto;
		align-content: center;
	}
	
	
	
}



@media (max-width: 670px){

	#top_main_logo{
	 max-width:100%;
		min-width: 140px;
		
}
	#logo_main{
		
		margin:auto;
	}
	

	h2, label.btn{
		font-size:15pt;
	}
	#nav{
		line-height:1.9;
		padding:0px;
	}
	

}

@media (max-width: 360px){

	
	
	

}
