/*!
 * Gerhard Mann - gmann.work
 */
 
/* General */
body{
    font-family: 'Quicksand', sans-serif;
    }
  
h1, h2 {
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 600;
    color: #606060;
    padding: 0;
    margin: 0;
    }
    
p{
    color: #606060;
    }

section {
    padding: 100px 0;
    }

.color{
    color: #7AB317;
    }
    
.lead{
    letter-spacing: 0.01em;
    font-weight: 600;
    }
    
/* Navigation */
.darkHeader{
    transition: background-color 0.5s ease;
    background-color: #7AB317 !important;
    }
    
#navbarResponsive a{
    text-transform: none;
    font-size: 0.9em;
    font-weight: 600;
    }
    
    
#navbarResponsive a:after{    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0%;
    position: relative;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    }
    

a.active:after{
    content: "";
    display: block;
    height: 20px;
    border-bottom: 2px solid white;
    width: 20px;
    top: 0px;
    position: relative;
    }
    
#navbarResponsive a:hover:after{ 
    width: 20px; 
    left: 0; 
    }

/* Header */
header {
    padding: 70vh 0 0 0;
    }
    
#start h1, #start .lead{
    color: #7AB317 !important;
    text-shadow: 1px 0 #CCCCCC;
    background: rgba(255, 255, 255, .7);
    }

.bg-primary{
    background-image: url("../img/hero.jpg");
    background-color: #EFEFEF !important;
    background-position: center;
    background-size: cover;
    height: 90vh;
    }

/* Bio */
.icon{
    display: inline;
    float: left;
    padding-right: 1em;
    }
    
.text{
    display: inline;
    line-height: 1.7em;
    }

.circle{
    font-size: 1.2em;
    color: #CDCDCD;
    font-weight: 600;
    border-radius: 50%;
    border: 2px solid #7AB317;
    padding: 0.5em;
    margin: 0;
    width: 2.5em;
    height: 2.5em;
    text-align: center;
    vertical-align: middle;
    line-height: 1.25em;
    display: inline-block;
    }
    
.divider {
    width: 30px;
    height: 1px;
    border-bottom: 3px solid #7AB317;
    position: relative;
    opacity: 0.6;
    margin-bottom: 20px;
    }
    
    
.row {
    margin-left: 0px;
    margin-right: 0px;
    }
    
/* Portfolio */
.portfolio-card a{
    color: #555555 !important;
    }

.portfolio-card {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    text-align: center;
    height:268px;
    border:none;
    transform: scale(1);
    transition: transform 0.3s ease;
    }

.portfolio-card:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
    }

.portfolio-card .background-block {
    text-align: center;
    float: left;
    width: 100%;
    height: 180px;
    overflow: hidden;
    }
    
.portfolio-card .background-block .background {
    width: 150%;
    vertical-align: top;
    opacity: 0.9;
    left: -25%;
    position: relative;
    }
    
.portfolio-card .card-content {
    width: 100%;
    padding: 5px 5px;
    float:left;
    background:#efefef;
    height: 40%;
    border-radius:0 0 5px 5px;
    position: relative;
    z-index: 500;
    }

.portfolio-card .card-content::before {
    content: '';
    background: #efefef;
    width: 120%;
    height: 100%;
    left: -11px;
    bottom: 21px;
    position: absolute;
    z-index: -10;
    transform: rotate(-6deg);
    }
    
.portfolio-card h3 {
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 18px;
    }

.portfolio-card h3 small {
    display: block;
    font-size: 15px;
    margin-top:10px;
    }
    
/* Contact */ 
.floating-label{
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    z-index: 1500;
    }
  
.floating-label-field{
    color: rgba(44, 62, 80, .75); 
    border-width: 0;
    z-index: 2000;
    }
  
.floating-label-field:focus{
    outline: 0;
    box-shadow: 0;
    }

.floating-label-field::placeholder{
    color: rgba(44, 62, 80, .5);
    }

.floating-label, .floating-label-field{
    font: inherit;
    line-height: 1; 
    display: block;
    width: 100%;
    }

.floating-label-field, .floating-label-wrap{
    position: relative;
    }

.floating-label-field{
    padding: 1.5em; 
    transition: border-color .25s ease-in-out;
    color: #CDCDCD;
    border-radius: 5px;
    background-color: transparent;
    }
    
.floating-label-field + .floating-label{
    position: absolute;
    top: .75em;
    left: .75em;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: .75em;
    transition: transform .25s, opacity .25s, padding .25s ease-in-out;
    transform-origin: 0 0;    
    background-color: #FFFFFF;
    font-weight: 600;
    font-size: 1em;
    color: #999999;
    }

.floating-label-field:focus{
    border: 1px solid #555555 !important;
    background-color: #FFFFFF;
    }

.floating-label-field:not(:placeholder-shown){
    border: 1px solid #A0A0A0;
    color: #555555;
    }
   
.floating-label-field:focus + .floating-label, .floating-label-field:not(:placeholder-shown) + .floating-label{
    z-index: 2500;
    padding: .75em;
    transform: translate(0, -2em) scale(.9);
    color: #A0A0A0;
    border: none;
    }
  
.floating-label-field:not(textarea){
    max-height: 4em;
    }

.floating-label-field{
    padding: 1.5em;
    border: 1px solid #CDCDCD;
    }

.floating-label-field::placeholder{
    color: transparent;
    }
    
button{
    border-radius: 5px;
    background-color: #343A40;
    padding: 1.0em 5em;
    color: #EFEFEF;
    font-weight: 600;
    border: 0;
    outline: none;
    }
    
button:hover{
    transition: background-color 0.5s ease;
    background-color: #7AB317 !important;
    }
    
    
.btnsubmit{
    position: relative;
    }

.btnsubmit:after {
    position: absolute;
    font-family: "Fontello";
    content: "\E800";
    font-weight: 900;
    top: 50%;
    transform: translateY(-50%);
    right: 4.5em;
    transition: all .2s;
    font-size: 0.9em;
    }

.btnsubmit:hover:after {
    right: 3.5em;
    }
    
/* Portfolio Subpage */
#screenshots img{
    border-radius: 5px;
    border: 1px solid #EFEFEF;
    transform: scale(1);
    transition: transform 0.3s ease;
    }

#screenshots img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
    }
    
.text i{
    color: #A0A0A0;
    }
    
.text a{
    position: absolute;
    color: #606060;
    }
    
.text a:after{
    position: relative;
    font-family: "Fontello";
    content: "\E800";
    font-weight: 600;
    left: 0em;
    transition: all .2s;
    font-size: 0.9em;
    color: transparent;
    }

.text a:hover{
    text-decoration: none;
    color: #7AB317;
    }
    
.text a:hover:after{
    position: relative;
    font-family: "Fontello";
    content: "\E800";
    font-weight: 600;
    left: 0.5em;
    transition: all .2s;
    font-size: 0.9em;
    color: #7AB317;
    }
    
.featherlight .featherlight-content{
    padding: 0 !important;
    border-bottom: none !important;
    border-radius: 5px !important;
    }
    
.featherlight-close-icon{
    border-radius: 0 !important;
    }
    
.featherlight-close-icon:hover {
    background-color: #A0A0A0 !important;
    color: #EFEFEF !important;
    }
    
/* Animations */
.move {
    position: relative;
    animation-name: movein;
    animation-duration: 2s ;
    animation-fill-mode: forwards;
    }
  
.move+div {
    left: -40px;
    width: 30px;
    height: 1px;
    border-bottom: 3px solid #7AB317;
    position: relative;
    animation-name: movein;
    animation-duration: 1.7s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0.6;
    margin-bottom: 20px;
    }

@keyframes movein {
    0%   {left: -40px; top:0px; opacity: 1.0; letter-spacing: 0.05em; transform: scale(1.1);}
    25%  { opacity: 0.9}
    100% {left:0px; top:0px; opacity: 1.0; transform: scale(1);}
    }
 
/* End */



