
/* Links */
a,
a:focus,
a:hover {
    color: #fff;
}

/* Custom default button */
.btn-default,
.btn-default:focus {
    color: #FFF;
    text-shadow: none;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;    
}

.btn-portfolio {
    color: #444;
    text-shadow: none; 
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 20px;
    margin-top: 20px;
}

.btn-default:hover {
    color: #444;
    background-color: #fff;
}

.btn-portfolio:hover {
    color: #fff;
    background-color: #444;
}



/*
 * Base structure
 */

html,
body {
/*css for full size background image*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    background-color: #444;
    color: #fff;
text-align: center;

 
}


.brand {
    height: 70px;
/*    filter: drop-shadow(4px 4px 2px #BBB);*/
}

.wrapper {
    background: url(../images/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    
    display: block;
    width: 100%;
    padding: 0 15%;        
    min-height: 100%;
    
}

.shadow {
    -webkit-box-shadow: inset 100px 100px 100px rgba(0,0,0,.5);
    box-shadow: inset 100px 100px 100px rgba(0,0,0,.5);
}

.nav > li {
    display: inline-block;
}
.nav > li + li {
    margin-left: 20px;
}
.nav > li > a {
    padding-right: 0;
    padding-left: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff; /* IE8 proofing */
    color: rgba(255,255,255,.95);
    border-bottom: 2px solid transparent;
}
.nav > li > a:hover,
.nav > li > a:focus {
    background-color: transparent;
    border-bottom-color: #a9a9a9;
    border-bottom-color: rgba(255,255,255,.25);
}
.nav > .active > a,
.nav > .active > a:hover,
.nav > .active > a:focus {
    color: #fff;
    border-bottom-color: #fff;
}


.separator {
    margin: auto;
    border-bottom: 2px solid #ddd;
    width: 60%;
}

.boxes {
    display: table;
    border-spacing: 40px;
    margin-bottom: 50px;
    
}

.box-two,
.box-three {
    margin-bottom: 30px;
    display:table-cell;
    text-align: center;
    vertical-align: top;
}

.box-one {
    width: 100%;  
    display: block;
    text-align: center;
    margin-bottom: 50px;
}
.box-two {
    width: 48%;

}

.box-three {
    width: 30%;

}

.section {
    padding: 50px;
    width: 100%;
    float: left;
    clear: both;
    text-align: justify;
}

.title {
    margin-bottom: 40px;
    text-align: center;
} 

.box h4 {
    padding-bottom: 30px;
}

.box-two img {
    width: 100%;
    height: auto;
}

/*  Cover  */

.cover {
    padding: 10% 0;
    display: block;   
          
}
.cover .btn-lg {
    padding: 10px 20px;
    font-weight: bold;    
}

.header {
    min-height: 100vh;
    display: block;
/*    text-shadow: 0 1px 3px rgba(0,0,0,.5);*/
}

.cover-heading {
    font-weight: bold;
    font-size: 60px;
/*    text-shadow: 3px 3px #222;*/
}

.heading-shadow {
    background: radial-gradient(#222 15%, transparent 70%);
    padding: 100px 0;
}

/* Content */

.expertise {
   
    background-color: white;
    color: #444;
/*    text-shadow: 0 1px 3px rgba(0,0,0,.5);*/
    }  


.my-work {
    background-color: #EEE;
    color: #444;
}


.project-content {
    text-align: left;
}

.project-tags  {
    list-style-type: none;
    padding: 0;
} 


.contact-description {
    text-align: center; 
    font-size: 20px;
    
}

.contact {
    background-color: #FFF;
    color: #444;
}


 
/* Footer */

.footer {
    text-align: center;
}

.social {
    margin-bottom: -20px;
}

.social-links a {
    margin-right: 20px;
    font-size: 20px;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    color: #AAA;
}

.footer-description {
    color: #BBB;
}

.brand-footer {
    width: 70px;
    margin: 30px auto;
}

/* Lazy Load */

.js-lazy-image {
        transform: scale(.75) translateY(3.2rem);
        opacity: .3;
    }

@keyframes boom {
    0% {
        transform: scale(.75) translateY(3.2rem);
        opacity: .3;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}

.visible {
    animation-name: boom;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

/* Media Queries */

@media (max-width: 768px ) {
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    .cover-heading {
        font-size: 40px;
    }  
    

    
    .boxes {
        display: block;
    }
    
    .box-three,
    .box-two{
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .box-two img {
        width: 100%;
    }
    
    .brand {
        margin: 50px auto;
    }
     
    
}

@media (max-width: 960px ) {
    .container {
        width: 100%;
        padding: 0;
    }
    
    .header {
        width: 80%;
        margin: auto;
    }
    
    .js-lazy-image {
      transform: scale(.75) translateY(3.2rem);
      opacity: .3;
    }
    
}

@media (min-width: 768px) {
    .navbar{
        padding-top: 20px;         
    }    
    
    .brand {
        float: left;
    }
    
    .nav {
        float: right;
    }
    
    #float-left {
        float: left;
    }
    
    #float-right {
        float: right;
    }
}

