﻿/* Elements */

body{
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height:2em;
    background-image: url(/images/background.jpg);
    background-repeat:no-repeat;
    background-attachment:fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size:cover;
}

h1 {
    font-family:'montserratlight','Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
/* Bootstrap Customs*/
.carousel-inner{
    max-height:350px;
}
.carousel-inner img{
    position:relative;
    bottom:0px;
    top:auto;
}
.carousel-control.left{
    background-image: none;
}
.carousel-control.right{
    background-image: none;
}

.carousel-caption{
    background:RGBA(0,0,0,0.5);
    text-shadow:none;
}
#myCarousel{
    display:block;
}

/* Classes */

.align-center{
    text-align:center;
} 

.align-right{
    text-align:right;
}

.about{
    margin-top:150px;
    background:#FFF;
}

.jumboheader{
    background-color:#3d95b5;
    background-image:url(/images/background.jpg);
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-blend-mode: multiply;
    width:100%;
    min-height: 620px;
    margin-top:200px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size:cover;
    padding-bottom:20px;
}

.jumbomain{
    color:#FFF;
    text-align:right;
    font-family:'montserratlight','Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.jumbomain h1 {
    font-size:3.5em;
    font-weight:300;
}

.jumbomain h3 {
    font-weight:300;
}

.jumbomain img{
    margin:80px 0px 25px 0px;
}

.navbar{
    font-family: Lato, 'Open Sans', Arial, Helvetica, sans-serif;
}

.portfolio{
    margin-top: 100px;
}

.portfolio h1{

    border-bottom: 2px solid #333333;
}

.portfolio-box{
    color: #FFF;
    background: #FFF;
    height: auto;
    width: 100%;
    max-width:640px;
    margin:auto;
    position:relative;
    overflow:hidden;
    margin-top:50px;
    /*border: solid 5px white;
    border-radius: 5px;*/
    box-shadow: 0px 5px 5px RGBA(0,0,0,0.5);
    display:inline-block;
}

.portfolio-box img {
    max-width: 100%;
    transition: transform 0.4s;
}

.portfolio-box:hover img{
    transform: translateY(-50px)
}

.portfolio-detail{
    position:absolute;
    top:auto;
    bottom:0;
    height:100px;
    width:100%;
    background: #FFF;
    color:#333333;
    padding-left:20px;
    opacity: 0;
	transform: translateY(100%);
	transition: transform 0.4s, opacity 0.1s 0.3s;
    text-align:left;
}
.portfolio-box p{
    max-width:300px;
    line-height:18px;
}
.portfolio-box:hover .portfolio-detail {
	opacity: 1;
	transform: translateY(0px);
	transition: transform 0.4s, opacity 0.1s;
}

.portfolio-detail a {
    text-align: center;
	padding: 5px 15px;
	display: inline-block;
    border: 2px solid #191f26;
	color: #191f26;
    font-size: 1.1em;
    position:absolute;
    right:20px;
    top:50px;
    text-decoration:none;
     font-family:'montserratregular','Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

.portfolio-detail a:hover{
    background-color:#191f26;
    color:#FFF;
}

.footer{
    text-align:center;
    background:#0c0f13;
    color:#FFF;
    min-height:250px;
    margin-top:50px;
    font-size:18px;
    line-height:1em;
    padding-top: 25px;
    padding-bottom:50px;
}

.footer p {
    padding-top: 10px;
}

.footer i {
    padding-bottom: 10px;
}

.vcenter{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* IDs */
#viewBtn{
    margin-top:50px;
    font-size: 2em;
    font-weight:700;
    padding: 24px 75px 24px 75px;
    border: 3px solid white;
    background: rgba(255,255,255,0.1);
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    color:#FFF;
}

#viewBtn:hover{
    background: rgba(255,255,255,0.5);
    color:#3d95b5;
}



@media (max-width:1200px){

    .intro-header {
        font-size: 2.5em;
    }

}  

@media (max-width:720px){

    .jumboheader{
        margin-top:0px;
    }
    .jumbomain{
        text-align:center;
    }
    .jumbomain h1 {
        font-size: 2.2em;
    }

}

@media (max-width:480px){
    
    .jumbomain img{
        margin:80px 0px 25px 0px;
        max-width:90%;
    }
    
    
    #viewBtn{
    padding: 24px 20px 24px 20px;
    }
}

