/*
Polywurk.com
Version 5-7-2020
Developed by POLYWURK | www.polywurk.com
*/


/* -- Content -- */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }





/* -- Site -- */


@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;600&display=swap');
        
        body {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 300;
            font-size: 100%;
        }
        
        .wrap {
            max-width: 1140px;
            margin-left:auto;
            margin-right:auto;
            padding: 0px 40px;
        }
        
        
        header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 40px 0px 0px 0px;
            background-color: #ffffff;
            letter-spacing: 0.1em;
        }
        
        
        .logo {
            cursor: pointer;
            margin-right:auto;
            height: 25px;
        }
        
        .nav_links {
            list-style: none;
        }
        
        .nav_links li {
            display: inline-block;
            padding-left: 10px;
            font-weight: 300;
            font-size: 16px;
            line-height: 28px;
            color: #000000;
            text-decoration: none;
        }
        
        .nav_links li a {
            font-weight: 400;
            color: #000000;
            text-decoration: none;
        }
        
        .nav_links li a:hover {
            font-weight: 400;
            color: #000000;
            text-decoration: none;
        }
        
        
        .headline {
            display: block;
            text-align: center;
            margin-left: auto;
            margin-right:auto;
            margin: 80px 0px 0px 0px;
            padding: 0px;
        }
        
        
        .headline h1{
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 300;
            font-size: 48px;
            line-height: 84px;
            color: #000000;
            text-decoration: none;
            margin: 0px 0px;
            padding: 0px 0px;
        }
        
        
        .portfolio {
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
            list-style: none;
            text-align: center;
            margin: 0px 0px 0px 0px;
            
        }
        
        
        .portfolio ul {
            margin:0px 0px 0px 0px;
            padding:0;
        }
        
        
        .portfolio ul li {
            display: inline-block;
            position: relative;
            padding: 0px;
            margin: 0;
            height: 275px;
            width: 375px;
            font-weight: 600;
            text-transform: uppercase;
            text-align: center;
            font-size: 16px;
            line-height: 18px;
            color: #000000;
            text-decoration: none;
            background-color: 202020;
            opacity: 0.5;
        }
        
        .portfolio li:hover {
            opacity: 1;
            /*
            box-shadow:  0 0 10px  rgba(0,0,0,0.6);
                -moz-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
                -webkit-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
                -o-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
            */
        }
        
        
        .portfolio img {
            padding:0;
            margin:0;
            height: 275px;
            width: 375px;
            
        }
        
        
        
        .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 275px;
  width: 375px;
  opacity: 0;
  transition: .2s ease;
  background-color: #202020;
  
}

.portfolio li:hover .overlay {
  opacity: 1;
}

.overlay_text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
       
.overlay_text h1 {
  margin:0;
  padding: 0px 0px 0px 0px;
  color: white;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
    text-transform: uppercase;
        }
        
        
.overlay_text h2 {
  margin:0;
  padding: 0px 0px 20px 0px;
  color: white;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  text-transform: uppercase;
        }
        
.overlay_text h3 {
  margin:0;
  padding: 0px 0px 20px 0px;
  color: white;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
    text-transform: none;
  font-style:italic;
        }
        
        
        
  footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin: 10px 0px 20px 0px;
            padding: 0px;
            background-color: #ffffff;
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 300;
            font-size: 12px;
            line-height: 18px;
            color: #000000;
            letter-spacing: 0.1em;
            border-top: 1px #c0c0c0 solid;
        }
        
        .footer-copyright {
            cursor: pointer;
            margin-right:auto;
        }
        
        .footer-copyright p {
            font-weight: 300;
            font-size: 12px;
            line-height: 18px;
            color: #000000;
        }
        
        .footer-credit p {
            text-decoration: none;
        }
        
        .footer-credit img {
            height:16px;
        }
        
        .footer-credit a {
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease 0s;
            border-bottom: 1px dotted #000000;
            padding-bottom: 2px;
        }    
        